diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-06-27 10:11:01 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-06-27 10:11:01 +0000 |
commit | 64d2298206d2165c99c68d872face504ec12980c (patch) | |
tree | 9618d9fb349e755d73aeff2eb32070e2487419aa | |
parent | e8ba59271796f35d70ba87bd2b989d7688964442 (diff) | |
download | portage-64d2298206d2165c99c68d872face504ec12980c.tar.gz portage-64d2298206d2165c99c68d872face504ec12980c.tar.bz2 portage-64d2298206d2165c99c68d872face504ec12980c.zip |
Fix quoting.
svn path=/main/trunk/; revision=7057
-rwxr-xr-x | bin/isolated-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index 78e1096cd..8a069e832 100755 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -60,7 +60,7 @@ diefunc() { eerror " ${x}" done fi - if [ ${EBUILD#${PORTDIR}/} == ${EBUILD} ] ; then + if [ "${EBUILD#${PORTDIR}/}" == "${EBUILD}" ] ; then local overlay=${EBUILD%/*} overlay=${overlay%/*} overlay=${overlay%/*} |