diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-07-10 19:09:32 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-07-10 19:09:32 (GMT) |
commit | cf9f5c965cf03b2408c6ca875dc7934072251ab3 (patch) | |
tree | 27a863dc7f9d27aa33cb923082633469c37477cf /fortran | |
parent | a46f951ea0f9fa3be5b7d61d2b1f7116e28ced9d (diff) | |
download | hdf5-cf9f5c965cf03b2408c6ca875dc7934072251ab3.zip hdf5-cf9f5c965cf03b2408c6ca875dc7934072251ab3.tar.gz hdf5-cf9f5c965cf03b2408c6ca875dc7934072251ab3.tar.bz2 |
[svn-r4172]
Purpose:
Bug Fix
Description:
*sigh* The change I made yesterday didn't work correctly. The shell
command interpretted the line as if it were command flags.
Solution:
Removed the "()"s from around the macro name so that they can be
expanded correctly.
Platforms tested:
Linux
Diffstat (limited to 'fortran')
-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 dd949c0..b37a2ad 100644 --- a/fortran/acsite.m4 +++ b/fortran/acsite.m4 @@ -249,7 +249,7 @@ done if test -n "$F9XMODFLAG"; then echo $F9XMODFLAG 1>&6 - FFLAGS="$(F9XMODFLAG). $(F9XMODFLAG)../src $FFLAGS" + FFLAGS="$F9XMODFLAG. $F9XMODFLAG../src $FFLAGS" else echo unknown 1>&6 fi |