summaryrefslogtreecommitdiffstats
path: root/test/overrides.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/overrides.py')
-rw-r--r--test/overrides.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/overrides.py b/test/overrides.py
index 343cea4..cca8dc7 100644
--- a/test/overrides.py
+++ b/test/overrides.py
@@ -35,9 +35,9 @@ _python_ = TestSCons._python_
test.write('SConstruct', """
env = Environment(CCFLAGS='-DFOO', LIBS=['a'])
def build(target, source, env):
- print("env['CC'] =", env['CC'])
- print("env['CCFLAGS'] =", env['CCFLAGS'])
- print("env['LIBS'] =", env['LIBS'])
+ print("env['CC'] = "+env['CC'])
+ print("env['CCFLAGS'] = "+env['CCFLAGS'])
+ print("env['LIBS'] = "+str(env['LIBS']))
builder = Builder(action=build, CC='buildcc', LIBS='buildlibs')
env['BUILDERS']['Build'] = builder