diff options
Diffstat (limited to 'test/CPPFLAGS.py')
-rw-r--r-- | test/CPPFLAGS.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py index 977d9ff..9c0295c 100644 --- a/test/CPPFLAGS.py +++ b/test/CPPFLAGS.py @@ -110,7 +110,7 @@ env = Environment(CPPFLAGS = '-x', CC = r'%s mygcc.py cc', CXX = r'%s mygcc.py c++', F77 = r'%s mygcc.py g77') -env.Program(target = 'foo', source = 'test1.c test2.cpp test3.F') +env.Program(target = 'foo', source = Split('test1.c test2.cpp test3.F')) """ % (python, python, python, python)) test.write('test1.c', r"""test1.c |