diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-19 17:55:13 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-19 17:55:13 (GMT) |
commit | de64fa46855fb3bd4abe5f70a930df05090e55ae (patch) | |
tree | ed24a77655f040893f515819632d7ea0da083fde /fortran/configure | |
parent | ebc3e8a26e82eba3e32b41a862c49edf6279741f (diff) | |
download | hdf5-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/configure')
-rwxr-xr-x | fortran/configure | 2 |
1 files changed, 1 insertions, 1 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 |