summaryrefslogtreecommitdiffstats
path: root/test/ENV.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/ENV.py')
-rw-r--r--test/ENV.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ENV.py b/test/ENV.py
index 24fb572..ae9b80c 100644
--- a/test/ENV.py
+++ b/test/ENV.py
@@ -36,7 +36,7 @@ bin2_build_py = test.workpath('bin2', 'build.py')
test.write('SConstruct', """
import os
-Bld = Builder(name = 'Bld', action = "%s build.py $TARGET $SOURCES")
+Bld = Builder(name = 'Bld', action = r"%s build.py $TARGET $SOURCES")
env1 = Environment(ENV = {'X' : 'env1'}, BUILDERS = [Bld])
env2 = Environment(ENV = {'X' : 'env2'}, BUILDERS = [Bld])
env1.Bld(target = 'env1.out', source = 'input')