diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-12-11 06:04:07 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-12-11 06:04:07 +0000 |
commit | 80b175067f59e81d6219c84803fe4c9bf6241e81 (patch) | |
tree | 9c97b12620afd24652ba32024fb5a1f90752b7ef /bin/ebuild.sh | |
parent | Filter prefix variables ED, EPREFIX, and EROOT inside (diff) | |
download | portage-idfetch-80b175067f59e81d6219c84803fe4c9bf6241e81.tar.gz portage-idfetch-80b175067f59e81d6219c84803fe4c9bf6241e81.tar.bz2 portage-idfetch-80b175067f59e81d6219c84803fe4c9bf6241e81.zip |
Don't filter/interfere with prefix variables unless they are supported by the
current EAPI.
svn path=/main/trunk/; revision=15031
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-x | bin/ebuild.sh | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 0bbfc10f..009c59c3 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1651,7 +1651,18 @@ filter_readonly_variables() { SANDBOX_DEBUG_LOG SANDBOX_DISABLED SANDBOX_LIB SANDBOX_LOG SANDBOX_ON" filtered_vars="$readonly_bash_vars $bash_misc_vars - $READONLY_PORTAGE_VARS ED EPREFIX EROOT PATH" + $READONLY_PORTAGE_VARS PATH" + + # Don't filter/interfere with prefix variables unless they are + # supported by the current EAPI. + case "${EAPI:-0}" in + 0|1|2) + ;; + *) + filtered_vars+=" ED EPREFIX EROOT" + ;; + esac + if hasq --filter-sandbox $* ; then filtered_vars="${filtered_vars} SANDBOX_.*" else |