diff options
-rwxr-xr-x | bin/ebuild.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index ef9fbc73e..cb21d9ee9 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1618,7 +1618,8 @@ if [ -n "${myarg}" ] && \ # Save current environment and touch a success file. (echo for success) umask 002 set | egrep -v "^SANDBOX_" > "${T}/environment" 2>/dev/null - export | egrep -v "^declare -x SANDBOX_" >> "${T}/environment" 2>/dev/null + export | egrep -v "^declare -x SANDBOX_" | \ + sed 's:declare -rx:declare -x:' >> "${T}/environment" 2>/dev/null chown portage:portage "${T}/environment" &>/dev/null chmod g+w "${T}/environment" &>/dev/null fi |