Gentoo Archives: gentoo-commits

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