summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-09-29 17:41:03 +0000
committerZac Medico <zmedico@gentoo.org>2006-09-29 17:41:03 +0000
commit282ebf3e58057c24f3ef40d734876d224bda3d61 (patch)
treea6168dc1249ca4844d503422cf92d469ee13263c /bin/ebuild.sh
parentFix inverted --with-bdeps logic. (diff)
downloadportage-multirepo-282ebf3e58057c24f3ef40d734876d224bda3d61.tar.gz
portage-multirepo-282ebf3e58057c24f3ef40d734876d224bda3d61.tar.bz2
portage-multirepo-282ebf3e58057c24f3ef40d734876d224bda3d61.zip
Fix broken [ -z "" ] test. Thanks to Volkov Peter <pva@gentoo.org> for this patch from bug #149494.
svn path=/main/trunk/; revision=4556
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index d093fe0b..b577fa36 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -559,7 +559,7 @@ einstall() {
fi
if [ -f ./[mM]akefile -o -f ./GNUmakefile ] ; then
- if [ ! -z "${PORTAGE_DEBUG}" ]; then
+ if [ "${PORTAGE_DEBUG}" == "1" ]; then
make -n prefix=${D}/usr \
datadir=${D}/usr/share \
infodir=${D}/usr/share/info \