From cf9f5c965cf03b2408c6ca875dc7934072251ab3 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 10 Jul 2001 14:09:32 -0500 Subject: [PATCH] [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 --- fortran/acsite.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fortran/acsite.m4 b/fortran/acsite.m4 index dd949c021f..b37a2adeed 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