diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-04-01 22:13:59 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-04-01 22:13:59 +0000 |
commit | 79769780816727f39a127fac8c5686160e8a0456 (patch) | |
tree | 989dbe93aafbf17fbbfceeea71a03ba8be915b25 | |
parent | fce30c479e97c4ed7ee97b8e26252c9d9ba1c6a4 (diff) | |
download | portage-79769780816727f39a127fac8c5686160e8a0456.tar.gz portage-79769780816727f39a127fac8c5686160e8a0456.tar.bz2 portage-79769780816727f39a127fac8c5686160e8a0456.zip |
Bug #215673 - Make ebuild.sh leave IUSE defaults intact instead of filtering
them out. The built_with_use() function in eutils.eclass needs to be updated
for compatibility.
svn path=/main/trunk/; revision=9674
-rwxr-xr-x | bin/ebuild.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index cc42e8581..93dc1feea 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1707,20 +1707,6 @@ if ! hasq ${EBUILD_PHASE} clean && \ PDEPEND="${PDEPEND} ${E_PDEPEND}" unset ECLASS E_IUSE E_DEPEND E_RDEPEND E_PDEPEND - - if [ "${EBUILD_PHASE}" != "depend" ] ; then - # Make IUSE defaults backward compatible with all the old shell code. - iuse_temp="" - for x in ${IUSE} ; do - if [[ ${x} == +* ]] || [[ ${x} == -* ]] ; then - iuse_temp="${iuse_temp} ${x:1}" - else - iuse_temp="${iuse_temp} ${x}" - fi - done - export IUSE=${iuse_temp} - unset x iuse_temp - fi set +f fi |