Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13533 - main/branches/2.1.6/bin
Date: Thu, 30 Apr 2009 07:22:51
Message-Id: E1LzQbY-0001J2-Sa@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-30 07:22:48 +0000 (Thu, 30 Apr 2009)
3 New Revision: 13533
4
5 Modified:
6 main/branches/2.1.6/bin/ebuild.sh
7 Log:
8 In ebuild_main(), unset ebuild_helpers_path when finished with it, since
9 bash exposes local variables to 'children'. (trunk r13381)
10
11 Modified: main/branches/2.1.6/bin/ebuild.sh
12 ===================================================================
13 --- main/branches/2.1.6/bin/ebuild.sh 2009-04-30 07:22:35 UTC (rev 13532)
14 +++ main/branches/2.1.6/bin/ebuild.sh 2009-04-30 07:22:48 UTC (rev 13533)
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 + unset ebuild_helpers_path
20
21 if ! hasq $EBUILD_SH_ARGS clean depend help info nofetch ; then