diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-08-25 15:37:37 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-08-25 15:37:37 +0000 |
commit | 9d5835b8a2347b671a8e4124a9969c2222c042ec (patch) | |
tree | acb650bf25416907f72b96ce724e25548a3af036 | |
parent | 974195ced3c99ab69a0e5c2436a7e5d840639803 (diff) | |
download | portage-9d5835b8a2347b671a8e4124a9969c2222c042ec.tar.gz portage-9d5835b8a2347b671a8e4124a9969c2222c042ec.tar.bz2 portage-9d5835b8a2347b671a8e4124a9969c2222c042ec.zip |
remove the MULTILIB_STRICT_EXEMPT default as all profiles set it anyway
svn path=/main/trunk/; revision=4343
-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 75262ea71..45a85326f 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|binutils)"} | sed -e 's:\([(|)]\):\\\1:g') + MULTILIB_STRICT_EXEMPT=$(echo ${MULTILIB_STRICT_EXEMPT} | 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 |