diff options
author | Steven Knight <knight@baldmt.com> | 2003-01-15 05:41:30 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-01-15 05:41:30 (GMT) |
commit | 284db25033af74d831c2e6c0f18c3e9415115705 (patch) | |
tree | 2d7f5c5c38fe6f5cfcce5fc25613150c8aefee20 /test/ParseConfig.py | |
parent | 64d27f9efc30088f70214b4585b83707c56f6c0a (diff) | |
download | SCons-284db25033af74d831c2e6c0f18c3e9415115705.zip SCons-284db25033af74d831c2e6c0f18c3e9415115705.tar.gz SCons-284db25033af74d831c2e6c0f18c3e9415115705.tar.bz2 |
Necessary changes towards supporting Jython.
Diffstat (limited to 'test/ParseConfig.py')
-rw-r--r-- | test/ParseConfig.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ParseConfig.py b/test/ParseConfig.py index eaf7802..259a1ca 100644 --- a/test/ParseConfig.py +++ b/test/ParseConfig.py @@ -46,7 +46,7 @@ print env['LIBPATH'] print env['LIBS'] print env['CCFLAGS'] print static_libs -""" % (sys.executable, test_config)) +""" % (TestSCons.python, test_config)) test.write('SConstruct2', """ env = Environment(CPPPATH = [], LIBPATH = [], LIBS = [], CCFLAGS = '') @@ -56,7 +56,7 @@ print env['LIBPATH'] print env['LIBS'] print env['CCFLAGS'] print static_libs -""" % (sys.executable, test_config)) +""" % (TestSCons.python, test_config)) good_stdout = test.wrap_stdout(read_str = """\ ['/usr/include/fum', 'bar'] |