diff options
author | Alec Warner <antarus@gentoo.org> | 2007-11-06 06:25:50 +0000 |
---|---|---|
committer | Alec Warner <antarus@gentoo.org> | 2007-11-06 06:25:50 +0000 |
commit | 1a680f7ebd9859d0a1a0db7fb242534abae5b2fe (patch) | |
tree | 917ed9ed20cc2169608a03592a3afda8ced5b72b | |
parent | 81ec22fe6a05bae56e9585f4d6a128f3d79d815a (diff) | |
download | portage-1a680f7ebd9859d0a1a0db7fb242534abae5b2fe.tar.gz portage-1a680f7ebd9859d0a1a0db7fb242534abae5b2fe.tar.bz2 portage-1a680f7ebd9859d0a1a0db7fb242534abae5b2fe.zip |
remove O and PPID from being readonly. O is set python side (and we will hopefully stop being exported soon. PPID is ro by bash, so no need to declare it twice
svn path=/main/trunk/; revision=8437
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index bad2cacb1..30c6c958c 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1429,7 +1429,7 @@ export S=${WORKDIR}/${P} unset E_IUSE E_DEPEND E_RDEPEND E_PDEPEND -for x in T P PN PV PVR PR CATEGORY A EBUILD EMERGE_FROM O PPID FILESDIR PORTAGE_TMPDIR; do +for x in T P PN PV PVR PR CATEGORY A EBUILD EMERGE_FROM FILESDIR PORTAGE_TMPDIR; do [[ ${!x-UNSET_VAR} != UNSET_VAR ]] && declare -r ${x} done # Need to be able to change D in dyn_preinst due to the IMAGE stuff |