diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-28 14:52:45 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-03-28 14:52:45 (GMT) |
commit | eb8d6018207e397b6cf9925b0be6c1374a19e3fd (patch) | |
tree | 84ea6e2b251c047c81f4a42ab883dac0be19ca24 /fortran/acsite.m4 | |
parent | 13a26abb75b44dc2cdf1371ae21c7ae519cee378 (diff) | |
download | hdf5-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/acsite.m4')
-rw-r--r-- | fortran/acsite.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/acsite.m4 b/fortran/acsite.m4 index 90c7284..7b7c1c5 100644 --- a/fortran/acsite.m4 +++ b/fortran/acsite.m4 @@ -324,7 +324,7 @@ if AC_TRY_EVAL(ac_compile) && AC_TRY_EVAL(ac_link); then : [$3] else - LDFLAGS="saved_LDFLAGS" + LDFLAGS="$saved_LDFLAGS" [$4] fi cd .. |