From: Zac Medico Date: Fri, 29 Sep 2006 17:41:03 +0000 (-0000) Subject: Fix broken [ -z "" ] test. Thanks to Volkov Peter for this patch... X-Git-Tag: v2.1.2~747 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=282ebf3e58057c24f3ef40d734876d224bda3d61;p=portage.git Fix broken [ -z "" ] test. Thanks to Volkov Peter for this patch from bug #149494. svn path=/main/trunk/; revision=4556 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index d093fe0b1..b577fa363 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 \