summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2015-06-17 18:59:23 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2015-06-17 18:59:23 (GMT)
commitc986d41406ffc8312807643452c5719593cf1c50 (patch)
treea5937017a83e88c1d31f69dffd3615f6779cab89
parent5b4b4650c6b61da45bf665c80c70d0cbc3f01515 (diff)
downloadhdf5-c986d41406ffc8312807643452c5719593cf1c50.zip
hdf5-c986d41406ffc8312807643452c5719593cf1c50.tar.gz
hdf5-c986d41406ffc8312807643452c5719593cf1c50.tar.bz2
[svn-r27231] Fix bug in configure that prevented running make.
Tested: ummon
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index ae68a9f..3e23503 100755
--- a/configure
+++ b/configure
@@ -21542,7 +21542,7 @@ $as_echo_n "checking whether make will build with undefined variables... " >&6;
cat >maketest <<EOF
foo: \$(UNDEFINED) \$(UNDEFINED2)
- @echo \$(UNDEFINED3) works
+ echo \$(UNDEFINED3) works
EOF
if (${MAKE-make} -f maketest foo) >/dev/null 2>&1; then
diff --git a/configure.ac b/configure.ac
index d650747..6f546cd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -780,7 +780,7 @@ if test -n "${MAKE-make}"; then
cat >maketest <<EOF
foo: \$(UNDEFINED) \$(UNDEFINED2)
- @echo \$(UNDEFINED3) works
+ @echo \$(UNDEFINED3) works
EOF
if (${MAKE-make} -f maketest foo) >/dev/null 2>&1; then