diff options
author | Steven Knight <knight@baldmt.com> | 2002-10-04 22:04:27 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-10-04 22:04:27 (GMT) |
commit | bdf39335f8eff310c749fa5a9d08697aa81a003b (patch) | |
tree | 21343a3f090e72f244b310a2827f87789ffdaab0 /test/option-q.py | |
parent | 313be3374d81ff22c10b8ec09c465cabd835062f (diff) | |
download | SCons-bdf39335f8eff310c749fa5a9d08697aa81a003b.zip SCons-bdf39335f8eff310c749fa5a9d08697aa81a003b.tar.gz SCons-bdf39335f8eff310c749fa5a9d08697aa81a003b.tar.bz2 |
win32 test portability fixes (Anthony Roach)
Diffstat (limited to 'test/option-q.py')
-rw-r--r-- | test/option-q.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option-q.py b/test/option-q.py index efb192a..c6f2131 100644 --- a/test/option-q.py +++ b/test/option-q.py @@ -43,7 +43,7 @@ file.close() """) test.write('SConstruct', """ -B = Builder(action='%s build.py $TARGET $SOURCES') +B = Builder(action=r'%s build.py $TARGET $SOURCES') env = Environment(BUILDERS = { 'B' : B }) env.B(target = 'aaa.out', source = 'aaa.in') env.B(target = 'bbb.out', source = 'bbb.in') |