From: Zac Medico Date: Sun, 27 Jul 2008 06:02:05 +0000 (-0000) Subject: Temporarily `set -o noglob` when splitting QA_DT_HASH. X-Git-Tag: v2.2_rc4~22 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=89a12b9e08915a7b48157d1aa726bffd37bebdf8;p=portage.git Temporarily `set -o noglob` when splitting QA_DT_HASH. svn path=/main/trunk/; revision=11206 --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 369823793..5854de9b6 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -170,9 +170,13 @@ install_qa_check() { sed -e "s#^${x#/}\$##" -i "${T}"/scanelf-ignored-LDFLAGS.log done else + local shopts=$- + set -o noglob for x in ${QA_DT_HASH} ; do sed -e "s#^${x#/}\$##" -i "${T}"/scanelf-ignored-LDFLAGS.log done + set +o noglob + set -${shopts} fi fi sed -e "/^\$/d" -e "s#^#/#" -i "${T}"/scanelf-ignored-LDFLAGS.log