diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-08-05 15:21:19 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-08-05 15:21:19 +0000 |
commit | 7e26abf2880a27a8ee2aaa85ae1a12cc7e5584f9 (patch) | |
tree | 36993551a58703f3526c2f25bcb87cac105d2f7d /sys-devel/gcc-config/files | |
parent | New release. (diff) | |
download | gentoo-2-7e26abf2880a27a8ee2aaa85ae1a12cc7e5584f9.tar.gz gentoo-2-7e26abf2880a27a8ee2aaa85ae1a12cc7e5584f9.tar.bz2 gentoo-2-7e26abf2880a27a8ee2aaa85ae1a12cc7e5584f9.zip |
Fix long option for -S (--split-profile).
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'sys-devel/gcc-config/files')
-rw-r--r-- | sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r2 | 0 | ||||
-rwxr-xr-x | sys-devel/gcc-config/files/gcc-config-1.3.12 | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r2 b/sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r2 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/sys-devel/gcc-config/files/digest-gcc-config-1.3.12-r2 diff --git a/sys-devel/gcc-config/files/gcc-config-1.3.12 b/sys-devel/gcc-config/files/gcc-config-1.3.12 index 8dfe697d856f..0d3519b2c4f9 100755 --- a/sys-devel/gcc-config/files/gcc-config-1.3.12 +++ b/sys-devel/gcc-config/files/gcc-config-1.3.12 @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.12,v 1.2 2005/07/10 06:18:55 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.3.12,v 1.3 2005/08/05 15:21:19 azarah Exp $ trap ":" INT QUIT TSTP @@ -484,7 +484,7 @@ for x in "$@" ; do fi ;; -S|--split-profile) - if [[ $1 != "-S" || $# -eq 1 ]] ; then + if [[ ( $1 != "-S" && $1 != "--split-profile" ) || $# -eq 1 ]] ; then usage 1 fi shift # push -S out |