From de64fa46855fb3bd4abe5f70a930df05090e55ae Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 19 Oct 2000 12:55:13 -0500 Subject: [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 --- fortran/configure | 2 +- fortran/configure.in | 2 +- 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' -- cgit v0.12