diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-02-21 21:30:49 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-02-21 21:30:49 (GMT) |
commit | 643e9a38bd78fcf6c16127731693e6720bc6b22b (patch) | |
tree | 4daf788deb468f597976c3ad8adb5f6de060b0b4 /configure | |
parent | f712d13301d9649a16beb8b3e6e9456a6c9b1fc1 (diff) | |
download | hdf5-643e9a38bd78fcf6c16127731693e6720bc6b22b.zip hdf5-643e9a38bd78fcf6c16127731693e6720bc6b22b.tar.gz hdf5-643e9a38bd78fcf6c16127731693e6720bc6b22b.tar.bz2 |
[svn-r10062] Purpose:
Bug fix
Description:
Discovered two small bugs.
When MAKE is defined as the empty string, a test in configure incorrectly
identifies it as pmake. Skipped this test if $MAKE is the empty string.
Two .h5 files produced by a test in the hl directory were not cleaned.
Updated the Makefile.am.
Platforms tested:
heping, modi4 (very minor changes)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -9732,7 +9732,9 @@ rm maketest AM_MAKEFLAGS="" -echo "$as_me:$LINENO: checking whether make will build with undefined variables" >&5 +if test ${MAKE}; then + + echo "$as_me:$LINENO: checking whether make will build with undefined variables" >&5 echo $ECHO_N "checking whether make will build with undefined variables... $ECHO_C" >&6 cat >maketest <<EOF @@ -9749,7 +9751,8 @@ echo "${ECHO_T}no, setting -V flag" >&6 AM_MAKEFLAGS="\-V" fi -rm maketest + rm maketest +fi echo "$as_me:$LINENO: checking for production mode" >&5 echo $ECHO_N "checking for production mode... $ECHO_C" >&6 |