diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-11-20 07:09:55 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-11-20 07:09:55 +0000 |
commit | dede933dae9f7a2ec76a7714c61c92a52336e3ee (patch) | |
tree | 4b9d4aca275ca7c8c128d9527d2580989bb4f14a | |
parent | 4c655bdcf1279174e478153f3503fcd68de0049c (diff) | |
download | portage-dede933dae9f7a2ec76a7714c61c92a52336e3ee.tar.gz portage-dede933dae9f7a2ec76a7714c61c92a52336e3ee.tar.bz2 portage-dede933dae9f7a2ec76a7714c61c92a52336e3ee.zip |
Fix ${EBUILD_PHASE} quoting.
svn path=/main/trunk/; revision=8541
-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 af2b656b1..a7b5d5548 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1645,7 +1645,7 @@ done unset x # Lock the dbkey variables after the global phase -[ ${EBUILD_PHASE} != "depend" ] && declare -r ${READONLY_EBUILD_METADATA} +[ "${EBUILD_PHASE}" != "depend" ] && declare -r ${READONLY_EBUILD_METADATA} if hasq nostrip ${FEATURES} ${RESTRICT} || hasq strip ${RESTRICT} then |