diff options
author | Steven Knight <knight@baldmt.com> | 2001-12-30 02:14:54 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2001-12-30 02:14:54 (GMT) |
commit | 19ece17e5e025b7b9278a846eea60c8d12be438a (patch) | |
tree | b0718619911b158792b0bcc714f69e388cc8ac14 /test/ENV.py | |
parent | f98e00b67f9e3d4802d7bce866b3de8559cbc46d (diff) | |
download | SCons-19ece17e5e025b7b9278a846eea60c8d12be438a.zip SCons-19ece17e5e025b7b9278a846eea60c8d12be438a.tar.gz SCons-19ece17e5e025b7b9278a846eea60c8d12be438a.tar.bz2 |
Windows test fixes
Diffstat (limited to 'test/ENV.py')
-rw-r--r-- | test/ENV.py | 2 |
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') |