summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Slater <nslater@apache.org>2008-06-15 18:41:16 +0000
committerNoah Slater <nslater@apache.org>2008-06-15 18:41:16 +0000
commiteccdc936cd136d031147c693be41da948db2b6ae (patch)
treefb263b98e0cd97610e5457cf2def48cbeb625f8d
parent15b8d236ca889082b2f272bde3190511ce790be8 (diff)
corrected check for gm4
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@667990 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xbootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/bootstrap b/bootstrap
index 02699ad9..3b21b4bc 100755
--- a/bootstrap
+++ b/bootstrap
@@ -50,10 +50,10 @@ extract_configuration_variable () {
echo "changequote(\`[', \`]')" > $temporary_file
sed "s/m4_//" < $ACINCLUDE_IN_FILE >> $temporary_file
echo $variable_name >> $temporary_file
- if -n "$M4_EXECUTABLE"; then
+ if test -n "$M4_EXECUTABLE"; then
$M4_EXECUTABLE $temporary_file | grep -v "^$"
else
- if -n "$GM4_EXECUTABLE"; then
+ if test -n "$GM4_EXECUTABLE"; then
$GM4_EXECUTABLE $temporary_file | grep -v "^$"
fi
fi