diff options
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 2fbd612bd..84a83fe40 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -2006,7 +2006,7 @@ if ! hasq "$EBUILD_PHASE" clean cleanrm ; then # fnmatch patterns to regular expressions for x in QA_DT_HASH QA_DT_NEEDED QA_PRESTRIPPED QA_SONAME ; do if [[ $(declare -p $x 2>/dev/null) = declare\ -a* ]] ; then - eval "$x=(\${$x[@]} ${QA_PREBUILT//\*/.*})" + eval "$x=(\"\${$x[@]}\" ${QA_PREBUILT//\*/.*})" else eval "$x+=\" ${QA_PREBUILT//\*/.*}\"" fi |