aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hill <dirtyepic@gentoo.org>2011-01-18 07:04:36 +0000
committerRyan Hill <dirtyepic@gentoo.org>2011-01-18 07:04:36 +0000
commitcc80a5b36140a03beb10024d5f7ef154ebb1a413 (patch)
treeba5764334b5492a9dbab3f72b57323b0dd47c371 /gcc-config
parentFix typo in gcc-config, tsch -> tcsh, caused -E to use export iso setenv. No... (diff)
downloadgcc-config-cc80a5b36140a03beb10024d5f7ef154ebb1a413.tar.gz
gcc-config-cc80a5b36140a03beb10024d5f7ef154ebb1a413.tar.bz2
gcc-config-cc80a5b36140a03beb10024d5f7ef154ebb1a413.zip
Add support for gccgo in 4.6. (bug #329551)
Diffstat (limited to 'gcc-config')
-rwxr-xr-xgcc-config10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc-config b/gcc-config
index 7b17637..23d3cd7 100755
--- a/gcc-config
+++ b/gcc-config
@@ -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: gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.5,v 1.2 2009/12/27 16:03:52 grobian Exp $
+# $Header: 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