diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-22 08:19:45 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-22 08:19:45 (GMT) |
commit | cd9fdfb00de35275ce027990e33ab0fb68606477 (patch) | |
tree | afd92117f3c89f63e07ae1fb9f186862870a8546 /test/Fortran | |
parent | 9be901392ae6a13ebe2590e1d1c61adf4f0d7172 (diff) | |
download | SCons-cd9fdfb00de35275ce027990e33ab0fb68606477.zip SCons-cd9fdfb00de35275ce027990e33ab0fb68606477.tar.gz SCons-cd9fdfb00de35275ce027990e33ab0fb68606477.tar.bz2 |
Undo changes to unrelated files accidentally included in r4036.
Diffstat (limited to 'test/Fortran')
-rw-r--r-- | test/Fortran/link-with-cxx.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Fortran/link-with-cxx.py b/test/Fortran/link-with-cxx.py index 8d05c5c..a29558e 100644 --- a/test/Fortran/link-with-cxx.py +++ b/test/Fortran/link-with-cxx.py @@ -70,8 +70,7 @@ def copier(target, source, env): s = str(source[0]) t = str(target[0]) open(t, 'wb').write(open(s, 'rb').read()) -env = Environment(tools = ['gcc', 'gnulink', 'fortran'], - CXX = r'%(_python_)s test_linker.py', +env = Environment(CXX = r'%(_python_)s test_linker.py', CXXCOM = Action(copier), SMARTLINK = SCons.Tool.link.smart_link, LINK = r'$SMARTLINK', |