summaryrefslogtreecommitdiffstats
path: root/fortran
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-10-19 17:55:13 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-10-19 17:55:13 (GMT)
commitde64fa46855fb3bd4abe5f70a930df05090e55ae (patch)
treeed24a77655f040893f515819632d7ea0da083fde /fortran
parentebc3e8a26e82eba3e32b41a862c49edf6279741f (diff)
downloadhdf5-de64fa46855fb3bd4abe5f70a930df05090e55ae.zip
hdf5-de64fa46855fb3bd4abe5f70a930df05090e55ae.tar.gz
hdf5-de64fa46855fb3bd4abe5f70a930df05090e55ae.tar.bz2
[svn-r2704] Purpose:
Bug Fix Description: Sed was complaining about "filename expected" when trying to generate the .in files. The problem stemmed from the script sed was generating in the conftest.s1 file. It needed the DEPEND filename which wasn't being set. Solution: Fixed so that we check if DEPEND is zero before trying to set if (if not using a GNU make program) instead of testing if DEPEND has a value in it...I copied this incorrectly from the main library's configure.in file...my bad. Platforms tested: T3E
Diffstat (limited to 'fortran')
-rwxr-xr-xfortran/configure2
-rw-r--r--fortran/configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/fortran/configure b/fortran/configure
index 25f715c..7b9f4f8 100755
--- a/fortran/configure
+++ b/fortran/configure
@@ -2607,7 +2607,7 @@ else
echo "$ac_t""generic" 1>&6
fi
-if test -n "$DEPEND"; then
+if test -z "$DEPEND"; then
echo $ac_n "checking how to include a makefile""... $ac_c" 1>&6
echo "configure:2613: checking how to include a makefile" >&5
diff --git a/fortran/configure.in b/fortran/configure.in
index 3467378..8181693 100644
--- a/fortran/configure.in
+++ b/fortran/configure.in
@@ -484,7 +484,7 @@ else
fi
dnl How do we include another file into a Makefile?
-if test -n "$DEPEND"; then
+if test -z "$DEPEND"; then
AC_MSG_CHECKING(how to include a makefile)
dnl The include file contains the target for `foo'