From: Jim Jagielski Date: Fri, 15 Jan 1999 20:59:39 +0000 (+0000) Subject: Final phase of shell programming style consistancy check. X-Git-Tag: 1.3.5~37 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ebeee1b38c885b42660e018cd8f2e36116b73a67;p=apache Final phase of shell programming style consistancy check. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82668 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/binbuild.sh b/build/binbuild.sh index 33ee413885..7fa5325a1d 100755 --- a/build/binbuild.sh +++ b/build/binbuild.sh @@ -190,14 +190,14 @@ then echo "ERROR: Failed to build Apache. See \"build.log\" for details." exit 1; else - if [ ".$GTAR" != . ] + if [ "$GTAR" != "" ] then $GTAR -zcf ../apache-$VER-$OS.tar.gz -C .. --owner=root --group=root apache-$VER else - if [ ".$TAR" != . ] + if [ "$TAR" != "" ] then $TAR -cf ../apache-$VER-$OS.tar -C .. apache-$VER - if [ ".$GZIP" != . ] + if [ "$GZIP" != "" ] then $GZIP ../apache-$VER-$OS.tar fi