From 8340985f76ce62e4de796dd84f986e6484c64081 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 13 Dec 2009 03:49:51 +0000 Subject: Don't filter/interfere with prefix variables unless they are supported by the current EAPI. (trunk r15031) svn path=/main/branches/2.1.7/; revision=15065 --- bin/ebuild.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 3cd655496..a9591581d 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1657,7 +1657,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 -- cgit v1.2.3-1-g7c22