From 63865f1e164a80a322637718263a6fa5b2afd9e5 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 22 Nov 2007 21:59:54 +0000 Subject: Generalize the sed expression in filter_readonly_variables() so that it will work with things like 'declare -xr' as well as 'declare -rx'. svn path=/main/trunk/; revision=8605 --- bin/ebuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ebuild.sh b/bin/ebuild.sh index e03b18fa3..8ad15241d 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1394,7 +1394,7 @@ filter_readonly_variables() { # listed in READONLY_EBUILD_METADATA, since having any readonly attributes # persisting in the saved environment can be inconvenient when it # eventually needs to be reloaded. - egrep -v -e "${var_grep}" | sed 's:^declare -rx:declare -x:' + egrep -v -e "${var_grep}" | sed 's:^declare[[:space:]]\+-\([[:alnum:]]*\)r\([[:alnum:]]*\)[[:space:]]\+:declare -\1\2 :' } # @FUNCTION: preprocess_ebuild_env -- cgit v1.2.3-1-g7c22