From: Zac Medico Date: Tue, 27 Mar 2007 22:32:45 +0000 (-0000) Subject: Filter the readonly attribute from variables saved in ${T}/environment to prevent... X-Git-Tag: v2.2_pre1~1529 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c647651445ff9e2880882af4d6633951b96b19c0;p=portage.git Filter the readonly attribute from variables saved in ${T}/environment to prevent 'readonly variable' error messages in later phases. svn path=/main/trunk/; revision=6299 --- 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