diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-08-25 14:57:45 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-08-25 14:57:45 +0000 |
commit | 974195ced3c99ab69a0e5c2436a7e5d840639803 (patch) | |
tree | 8c8e7eb1950d7e4f59d3b5b7637e53bb1964b60f | |
parent | 0c0a97db4243ffb44b5b7b31eea194fef7d49cb8 (diff) | |
download | portage-974195ced3c99ab69a0e5c2436a7e5d840639803.tar.gz portage-974195ced3c99ab69a0e5c2436a7e5d840639803.tar.bz2 portage-974195ced3c99ab69a0e5c2436a7e5d840639803.zip |
ignore binutils wrt multilib-strict; bug 121641
svn path=/main/trunk/; revision=4342
-rwxr-xr-x | bin/misc-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index e4d0d908f..75262ea71 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -199,7 +199,7 @@ install_qa_check() { if hasq multilib-strict ${FEATURES} && [ -x /usr/bin/file -a -x /usr/bin/find -a \ -n "${MULTILIB_STRICT_DIRS}" -a -n "${MULTILIB_STRICT_DENY}" ]; then - MULTILIB_STRICT_EXEMPT=$(echo ${MULTILIB_STRICT_EXEMPT:-"(perl5|gcc|gcc-lib|debug|portage)"} | sed -e 's:\([(|)]\):\\\1:g') + MULTILIB_STRICT_EXEMPT=$(echo ${MULTILIB_STRICT_EXEMPT:-"(perl5|gcc|gcc-lib|debug|portage|binutils)"} | sed -e 's:\([(|)]\):\\\1:g') for dir in ${MULTILIB_STRICT_DIRS}; do [ -d "${D}/${dir}" ] || continue for file in $(find ${D}/${dir} -type f | grep -v "^${D}/${dir}/${MULTILIB_STRICT_EXEMPT}"); do |