diff options
author | Noah Slater <nslater@apache.org> | 2008-06-15 18:41:16 +0000 |
---|---|---|
committer | Noah Slater <nslater@apache.org> | 2008-06-15 18:41:16 +0000 |
commit | eccdc936cd136d031147c693be41da948db2b6ae (patch) | |
tree | fb263b98e0cd97610e5457cf2def48cbeb625f8d | |
parent | 15b8d236ca889082b2f272bde3190511ce790be8 (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-x | bootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |