summaryrefslogtreecommitdiff
path: root/build/binbuild.sh
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>1999-01-15 20:59:39 +0000
committerJim Jagielski <jim@apache.org>1999-01-15 20:59:39 +0000
commitebeee1b38c885b42660e018cd8f2e36116b73a67 (patch)
tree7d951409eab9ff76c62119d742325e9d0d2efe5a /build/binbuild.sh
parent4af7215a5863cbdd0504c6eb61071b24f643ffd3 (diff)
downloadhttpd-ebeee1b38c885b42660e018cd8f2e36116b73a67.tar.gz
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
Diffstat (limited to 'build/binbuild.sh')
-rwxr-xr-xbuild/binbuild.sh6
1 files changed, 3 insertions, 3 deletions
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