diff options
author | Fabian Groffen <grobian@gentoo.org> | 2009-12-27 16:03:53 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2009-12-27 16:03:53 +0000 |
commit | bb866dfb3c33db62bd083d2cd30e6ed78a43a0b0 (patch) | |
tree | 8ac5a80fec36e3e2279771aee5349d3c8f07d0bd /sys-devel/gcc-config | |
parent | Double revert (diff) | |
download | gentoo-2-bb866dfb3c33db62bd083d2cd30e6ed78a43a0b0.tar.gz gentoo-2-bb866dfb3c33db62bd083d2cd30e6ed78a43a0b0.tar.bz2 gentoo-2-bb866dfb3c33db62bd083d2cd30e6ed78a43a0b0.zip |
Fix typo in gcc-config, tsch -> tcsh, caused -E to use export iso setenv. Not bumping as this bug in gcc-config went unnoticed for years.
(Portage version: 2.2.00.15134-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'sys-devel/gcc-config')
-rw-r--r-- | sys-devel/gcc-config/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/gcc-config/files/gcc-config-1.4.1 | 8 | ||||
-rwxr-xr-x | sys-devel/gcc-config/files/gcc-config-1.5 | 8 |
3 files changed, 14 insertions, 9 deletions
diff --git a/sys-devel/gcc-config/ChangeLog b/sys-devel/gcc-config/ChangeLog index 0d8eec2d3bd1..8ee478a9440c 100644 --- a/sys-devel/gcc-config/ChangeLog +++ b/sys-devel/gcc-config/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/gcc-config # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.186 2009/12/20 19:55:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.187 2009/12/27 16:03:53 grobian Exp $ + + 27 Dec 2009; Fabian Groffen <grobian@gentoo.org> files/gcc-config-1.4.1, + files/gcc-config-1.5: + Fix typo in gcc-config, tsch -> tcsh, caused -E to use export iso setenv. + Not bumping as this bug in gcc-config went unnoticed for years. *gcc-config-1.5 (20 Dec 2009) diff --git a/sys-devel/gcc-config/files/gcc-config-1.4.1 b/sys-devel/gcc-config/files/gcc-config-1.4.1 index ebaa184f3ab8..da57a4fa01a2 100644 --- a/sys-devel/gcc-config/files/gcc-config-1.4.1 +++ b/sys-devel/gcc-config/files/gcc-config-1.4.1 @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2009 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.4.1,v 1.9 2009/08/03 00:40:07 halcy0n Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.4.1,v 1.10 2009/12/27 16:03:52 grobian Exp $ trap ":" INT QUIT TSTP @@ -482,7 +482,7 @@ print_environ() { GCC_PATH=$(source "${GCC_ENV_D}/${CC_COMP}"; echo ${GCC_PATH:-${PATH}}) case ${SHELL} in - */csh|*/tsch) + */csh|*/tcsh) ENV_CMD="setenv" SET_ELEMENT=" " ;; @@ -694,9 +694,9 @@ for x in "$@" ; do rcsfile="$RCSfile: gcc-config-1.4.1,v $" rcsfile=${rcsfile#: } rcsfile=${rcsfile%,v*} - cvsrev="$Revision: 1.9 $" + cvsrev="$Revision: 1.10 $" cvsrev=${cvsrev#: } - cvsdate="$Date: 2009/08/03 00:40:07 $" + cvsdate="$Date: 2009/12/27 16:03:52 $" cvsdate=${cvsdate#: } echo "${rcsfile} (r${cvsrev% *} @ ${cvsdate% *})" exit 0 diff --git a/sys-devel/gcc-config/files/gcc-config-1.5 b/sys-devel/gcc-config/files/gcc-config-1.5 index c802d4885ea1..79b2c41ead8d 100755 --- a/sys-devel/gcc-config/files/gcc-config-1.5 +++ b/sys-devel/gcc-config/files/gcc-config-1.5 @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2009 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.5,v 1.1 2009/12/20 19:55:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.5,v 1.2 2009/12/27 16:03:52 grobian Exp $ # Format of /etc/env.d/gcc/: # config-TARGET: CURRENT=version for TARGET @@ -457,7 +457,7 @@ print_environ() { source_var GCC_PATH "${GCC_ENV_D}/${CC_COMP}" "${PATH}" case ${SHELL} in - */csh|*/tsch) + */csh|*/tcsh) ENV_CMD="setenv" SET_ELEMENT=" " ;; @@ -618,9 +618,9 @@ for x in "$@" ; do rcsfile="$RCSfile: gcc-config-1.5,v $" rcsfile=${rcsfile#: } rcsfile=${rcsfile%,v*} - cvsrev="$Revision: 1.1 $" + cvsrev="$Revision: 1.2 $" cvsrev=${cvsrev#: } - cvsdate="$Date: 2009/12/20 19:55:21 $" + cvsdate="$Date: 2009/12/27 16:03:52 $" cvsdate=${cvsdate#: } echo "${rcsfile} (r${cvsrev% *} @ ${cvsdate% *})" exit 0 |