Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13386 - main/trunk/bin
Date: Thu, 23 Apr 2009 05:04:28
Message-Id: E1Lwr6n-00063r-Fx@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-23 05:04:25 +0000 (Thu, 23 Apr 2009)
3 New Revision: 13386
4
5 Modified:
6 main/trunk/bin/ebuild.sh
7 Log:
8 Fix breakage in PREROOTPATH logic from the EAPI 3 code.
9
10
11 Modified: main/trunk/bin/ebuild.sh
12 ===================================================================
13 --- main/trunk/bin/ebuild.sh 2009-04-23 04:53:32 UTC (rev 13385)
14 +++ main/trunk/bin/ebuild.sh 2009-04-23 05:04:25 UTC (rev 13386)
15 @@ -1914,6 +1914,7 @@
16 esac
17
18 export PATH="/usr/local/sbin:/sbin:/usr/sbin:${ebuild_helpers_path}:/usr/local/bin:/bin:/usr/bin:${ROOTPATH}"
19 + [[ -n $PREROOTPATH ]] && export PATH="${PREROOTPATH%%:}:$PATH"
20 unset ebuild_helpers_path
21
22 if ! hasq $EBUILD_SH_ARGS clean depend help info nofetch ; then