From: Zac Medico Date: Wed, 10 Dec 2008 02:01:23 +0000 (-0000) Subject: When attempting to close fd 9 at the end of the depend phase, use exec so that X-Git-Tag: v2.2_rc18~34 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=73bf16c7e0cfd4a9f2c8b4b65c28b25e9c0d1f21;p=portage.git When attempting to close fd 9 at the end of the depend phase, use exec so that it really works. svn path=/main/trunk/; revision=12190 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index ce6a06738..7b4fa6868 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -2068,7 +2068,7 @@ ebuild_main() { for f in ${auxdbkeys} ; do echo $(echo ${!f}) 1>&9 || exit $? done - 9>&- + exec 9>&- fi set +f ;;