diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-11-15 05:41:57 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-11-15 05:41:57 +0000 |
commit | 7f55d748b5a97ba494c3f99a732fb50a7c5b277d (patch) | |
tree | f0f43929c1e9efb9ab32f4bbebf916ae1a203de9 | |
parent | 2ea9efd54150557e57e7784abeefaf45f089ff3f (diff) | |
download | portage-7f55d748b5a97ba494c3f99a732fb50a7c5b277d.tar.gz portage-7f55d748b5a97ba494c3f99a732fb50a7c5b277d.tar.bz2 portage-7f55d748b5a97ba494c3f99a732fb50a7c5b277d.zip |
Fix quoting for `source ${EBUILD}`.
svn path=/main/trunk/; revision=8503
-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 158f91945..338da2c2b 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1473,7 +1473,7 @@ unset EBUILD_DEATH_HOOKS # unset before this process of interaction begins. unset DEPEND RDEPEND PDEPEND IUSE -source ${EBUILD} || die "error sourcing ebuild" +source "${EBUILD}" || die "error sourcing ebuild" if ! hasq depend $EBUILD_PHASE; then RESTRICT="${PORTAGE_RESTRICT}" unset PORTAGE_RESTRICT |