Gentoo Archives: gentoo-commits

From: "Mark Loeser (halcy0n)" <halcy0n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-devel/gcc-config/files: gcc-config-1.4.1
Date: Mon, 03 Aug 2009 00:40:09
Message-Id: E1MXlax-0006CY-HR@stork.gentoo.org
1 halcy0n 09/08/03 00:40:07
2
3 Modified: gcc-config-1.4.1
4 Log:
5 Make --use-old work again, thanks to Brian Childs <brian AT rentec DOT com>; bug #221109
6 (Portage version: 2.2_rc33-r1/cvs/Linux i686)
7
8 Revision Changes Path
9 1.9 sys-devel/gcc-config/files/gcc-config-1.4.1
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.4.1?rev=1.9&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.4.1?rev=1.9&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.4.1?r1=1.8&r2=1.9
14
15 Index: gcc-config-1.4.1
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.4.1,v
18 retrieving revision 1.8
19 retrieving revision 1.9
20 diff -u -r1.8 -r1.9
21 --- gcc-config-1.4.1 28 Jan 2009 02:32:50 -0000 1.8
22 +++ gcc-config-1.4.1 3 Aug 2009 00:40:07 -0000 1.9
23 @@ -1,7 +1,7 @@
24 #!/bin/bash
25 # Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.4.1,v 1.8 2009/01/28 02:32:50 vapier Exp $
28 +# $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 $
29
30 trap ":" INT QUIT TSTP
31
32 @@ -19,7 +19,7 @@
33 SED=$(type -P gsed)
34 SED=${SED:-$(type -P sed)}
35
36 -GENTOO_LIBDIR="@GENTOO_LIBDIR@"
37 +GENTOO_LIBDIR="lib"
38 [[ ${GENTOO_LIBDIR} == @*@ ]] && GENTOO_LIBDIR="lib"
39
40 usage() {
41 @@ -621,6 +621,7 @@
42 case "${x}" in
43 # Only use specified compiler if one is not already selected.
44 -O|--use-old)
45 + CTARGET=${CTARGET:-$(try_real_hard_to_find_CHOST)}
46 if get_current_profile &>/dev/null ; then
47 CC_COMP=$(get_current_profile)
48 else
49 @@ -693,9 +694,9 @@
50 rcsfile="$RCSfile: gcc-config-1.4.1,v $"
51 rcsfile=${rcsfile#: }
52 rcsfile=${rcsfile%,v*}
53 - cvsrev="$Revision: 1.8 $"
54 + cvsrev="$Revision: 1.9 $"
55 cvsrev=${cvsrev#: }
56 - cvsdate="$Date: 2009/01/28 02:32:50 $"
57 + cvsdate="$Date: 2009/08/03 00:40:07 $"
58 cvsdate=${cvsdate#: }
59 echo "${rcsfile} (r${cvsrev% *} @ ${cvsdate% *})"
60 exit 0