summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-02-22 17:42:48 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-02-22 17:42:48 (GMT)
commit081ac87fedbf20e700299dbe06dfc64fe1e96e7d (patch)
treea2c746e8b28fc834d29c546b8f65d4d4c2315251 /configure
parent7ff30cd69523ea8379c1ebbd7efb95eed80a6925 (diff)
downloadhdf5-081ac87fedbf20e700299dbe06dfc64fe1e96e7d.zip
hdf5-081ac87fedbf20e700299dbe06dfc64fe1e96e7d.tar.gz
hdf5-081ac87fedbf20e700299dbe06dfc64fe1e96e7d.tar.bz2
[svn-r10064] Purpose:
Bug fix Description: This checkin addresses two bugs. Firstly, I used the wrong semantics when detecting if $MAKE is defined to the empty string or undefined. Secondly, pmake on IRIX does not work well with automake's dependency tracking if the build is not an in-place build. Solution: Fixed semantics in configure.in. Disabled automatic dependency tracking automatically on IRIX. This is not the optimal fix, but it should work fine as long as no one is doing HDF5 development on IRIX, and it is much easier than trying to detect the exact situations in which dependency tracking fails (or than trying to fix dependency tracking!). Platforms tested: heping, modi4 (pmake and gmake)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 0e2d57a..6e03418 100755
--- a/configure
+++ b/configure
@@ -9732,7 +9732,7 @@ rm maketest
AM_MAKEFLAGS=""
-if test ${MAKE}; then
+if test -n "${MAKE-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