Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r14151 - main/trunk/bin
Date: Mon, 24 Aug 2009 10:15:56
Message-Id: E1MfWag-0005C2-Oc@stork.gentoo.org
1 Author: grobian
2 Date: 2009-08-24 10:15:54 +0000 (Mon, 24 Aug 2009)
3 New Revision: 14151
4
5 Modified:
6 main/trunk/bin/ebuild.sh
7 Log:
8 make sure we can deal with arches like x86-fbsd, like is done in bin/ebuild-helpers/prepstrip
9
10 Modified: main/trunk/bin/ebuild.sh
11 ===================================================================
12 --- main/trunk/bin/ebuild.sh 2009-08-24 10:12:18 UTC (rev 14150)
13 +++ main/trunk/bin/ebuild.sh 2009-08-24 10:15:54 UTC (rev 14151)
14 @@ -1841,7 +1841,7 @@
15
16 # This needs to be exported since prepstrip is a separate shell script.
17 [[ -n $QA_PRESTRIPPED ]] && export QA_PRESTRIPPED
18 - eval "[[ -n \$QA_PRESTRIPPED_$ARCH ]] && export QA_PRESTRIPPED_$ARCH"
19 + eval "[[ -n \$QA_PRESTRIPPED_${ARCH/-/_} ]] && export QA_PRESTRIPPED_${ARCH/-/_}"
20 }
21
22 if ! hasq "$EBUILD_PHASE" clean cleanrm ; then