diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2015-06-17 18:59:23 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2015-06-17 18:59:23 (GMT) |
commit | c986d41406ffc8312807643452c5719593cf1c50 (patch) | |
tree | a5937017a83e88c1d31f69dffd3615f6779cab89 | |
parent | 5b4b4650c6b61da45bf665c80c70d0cbc3f01515 (diff) | |
download | hdf5-c986d41406ffc8312807643452c5719593cf1c50.zip hdf5-c986d41406ffc8312807643452c5719593cf1c50.tar.gz hdf5-c986d41406ffc8312807643452c5719593cf1c50.tar.bz2 |
[svn-r27231] Fix bug in configure that prevented running make.
Tested: ummon
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 |