diff options
-rw-r--r-- | sys-devel/gcc-config/ChangeLog | 7 | ||||
-rwxr-xr-x | sys-devel/gcc-config/files/gcc-config-1.5 | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/sys-devel/gcc-config/ChangeLog b/sys-devel/gcc-config/ChangeLog index 8ee478a9440c..90679a9f11e8 100644 --- a/sys-devel/gcc-config/ChangeLog +++ b/sys-devel/gcc-config/ChangeLog @@ -1,6 +1,9 @@ # 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.187 2009/12/27 16:03:53 grobian Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.188 2011/01/18 07:04:36 dirtyepic Exp $ + + 18 Jan 2011; Ryan Hill <dirtyepic@gentoo.org> files/gcc-config-1.5: + Add support for gccgo in 4.6. (bug #329551) 27 Dec 2009; Fabian Groffen <grobian@gentoo.org> files/gcc-config-1.4.1, files/gcc-config-1.5: diff --git a/sys-devel/gcc-config/files/gcc-config-1.5 b/sys-devel/gcc-config/files/gcc-config-1.5 index 79b2c41ead8d..3cd4c1d2ec00 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 +# Copyright 1999-2011 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.2 2009/12/27 16:03:52 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.5,v 1.3 2011/01/18 07:04:36 dirtyepic Exp $ # Format of /etc/env.d/gcc/: # config-TARGET: CURRENT=version for TARGET @@ -174,7 +174,7 @@ update_wrappers() { done # Update the wrappers for this profile - for x in {,${CTARGET}-}{cpp,cc,gcc,c++,g++,f77,g77,gcj,gcjh,gcov,gdc,gdmd,gfortran} ; do + for x in {,${CTARGET}-}{cpp,cc,gcc,c++,g++,f77,g77,gcj,gcjh,gcov,gdc,gdmd,gfortran,gccgo} ; do # Obviously don't want to touch native stuff for cross-compilers [[ ${x} != ${CTARGET}-* ]] && is_cross_compiler && continue @@ -618,9 +618,9 @@ for x in "$@" ; do rcsfile="$RCSfile: gcc-config-1.5,v $" rcsfile=${rcsfile#: } rcsfile=${rcsfile%,v*} - cvsrev="$Revision: 1.2 $" + cvsrev="$Revision: 1.3 $" cvsrev=${cvsrev#: } - cvsdate="$Date: 2009/12/27 16:03:52 $" + cvsdate="$Date: 2011/01/18 07:04:36 $" cvsdate=${cvsdate#: } echo "${rcsfile} (r${cvsrev% *} @ ${cvsdate% *})" exit 0 |