summaryrefslogtreecommitdiffstats
path: root/fortran/configure
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-03-28 14:52:45 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-03-28 14:52:45 (GMT)
commiteb8d6018207e397b6cf9925b0be6c1374a19e3fd (patch)
tree84ea6e2b251c047c81f4a42ab883dac0be19ca24 /fortran/configure
parent13a26abb75b44dc2cdf1371ae21c7ae519cee378 (diff)
downloadhdf5-eb8d6018207e397b6cf9925b0be6c1374a19e3fd.zip
hdf5-eb8d6018207e397b6cf9925b0be6c1374a19e3fd.tar.gz
hdf5-eb8d6018207e397b6cf9925b0be6c1374a19e3fd.tar.bz2
[svn-r5104]
Purpose: Bug Fix Description: Hrm...When I was restoring the LDFLAGS variable after a failure, I fergot to put a $ on the saved_LDFLAGS variable during the assignment. DOH! Solution: Added the $. Platforms tested: Modi4
Diffstat (limited to 'fortran/configure')
-rwxr-xr-xfortran/configure6
1 files changed, 3 insertions, 3 deletions
diff --git a/fortran/configure b/fortran/configure
index cfef1af..a6bb5f7 100755
--- a/fortran/configure
+++ b/fortran/configure
@@ -2414,7 +2414,7 @@ if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2
:
else
- LDFLAGS="saved_LDFLAGS"
+ LDFLAGS="$saved_LDFLAGS"
PARALLEL=no
fi
cd ..
@@ -2481,7 +2481,7 @@ if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2
:
else
- LDFLAGS="saved_LDFLAGS"
+ LDFLAGS="$saved_LDFLAGS"
PARALLEL=no
fi
cd ..
@@ -2537,7 +2537,7 @@ if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2
:
else
- LDFLAGS="saved_LDFLAGS"
+ LDFLAGS="$saved_LDFLAGS"
{ echo "configure: error: no mpich library" 1>&2; exit 1; }
fi
cd ..