summaryrefslogtreecommitdiffstats
path: root/test/CPPFLAGS.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/CPPFLAGS.py')
-rw-r--r--test/CPPFLAGS.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py
index 357a241..92c7d7c 100644
--- a/test/CPPFLAGS.py
+++ b/test/CPPFLAGS.py
@@ -107,7 +107,7 @@ env = Environment(CPPFLAGS = '-x',
CC = r'%s mygcc.py cc',
CXX = r'%s mygcc.py c++',
CXXFLAGS = [],
- F77 = r'%s mygcc.py g77')
+ FORTRAN = r'%s mygcc.py g77')
env.Program(target = 'foo', source = Split('test1.c test2.cpp test3.F'))
""" % (python, python, python, python))
@@ -144,7 +144,7 @@ env = Environment(CPPFLAGS = '-x',
CC = r'%s mygcc.py cc',
CXX = r'%s mygcc.py c++',
CXXFLAGS = [],
- F77 = r'%s mygcc.py g77')
+ FORTRAN = r'%s mygcc.py g77')
env.SharedLibrary(target = File('foo.bar'),
source = Split('test1.c test2.cpp test3.F'))
""" % (python, python, python, python))