diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-12-22 16:26:56 -0800 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-12-22 16:26:56 -0800 |
commit | 3bbbe6b190079e943bbfda598f9dd0d45661c0e0 (patch) | |
tree | 489534eed5a19ace5bc8b193ea6488665fc9037e | |
parent | 1abc862c0998de0994a75484cb915daff26cfc65 (diff) | |
download | portage-3bbbe6b190079e943bbfda598f9dd0d45661c0e0.tar.gz portage-3bbbe6b190079e943bbfda598f9dd0d45661c0e0.tar.bz2 portage-3bbbe6b190079e943bbfda598f9dd0d45661c0e0.zip |
QA_FLAGS_IGNORED: include QA_PREBUILT
Also, QA_DT_HASH doesn't need to include QA_PREBUILT anymore, since
it's merged with QA_FLAGS_IGNORED.
-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 63c246a89..a4ac81bca 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -603,7 +603,7 @@ if ! has "$EBUILD_PHASE" clean cleanrm ; then # these ones support regular expressions, so translate # fnmatch patterns to regular expressions - for x in QA_DT_HASH QA_DT_NEEDED QA_PRESTRIPPED QA_SONAME ; do + for x in QA_DT_NEEDED QA_FLAGS_IGNORED QA_PRESTRIPPED QA_SONAME ; do if [[ $(declare -p $x 2>/dev/null) = declare\ -a* ]] ; then eval "$x=(\"\${$x[@]}\" ${QA_PREBUILT//\*/.*})" else |