diff options
author | Thomas Tanner <trtanner@btinternet.com> | 2016-01-30 22:39:17 (GMT) |
---|---|---|
committer | Thomas Tanner <trtanner@btinternet.com> | 2016-01-30 22:39:17 (GMT) |
commit | 7f5d85d7f4428fb2fb7271952a00c87dc8c66533 (patch) | |
tree | 912fb4db4a3e452f811ab3a922a05d76bf4dba10 /test/Deprecated/SourceCode/SCCS/SCCSCOMSTR.py | |
parent | a88dd02a03343dd0a0e17f6ad589148bf77d0493 (diff) | |
download | SCons-7f5d85d7f4428fb2fb7271952a00c87dc8c66533.zip SCons-7f5d85d7f4428fb2fb7271952a00c87dc8c66533.tar.gz SCons-7f5d85d7f4428fb2fb7271952a00c87dc8c66533.tar.bz2 |
Fix for backslash being treated as an escape character
On my windows system, my python is in c:\apps\32\python. Theres a lot of places
where that \32 gets turned into an ascii character and the unit tests don't run.
Diffstat (limited to 'test/Deprecated/SourceCode/SCCS/SCCSCOMSTR.py')
-rw-r--r-- | test/Deprecated/SourceCode/SCCS/SCCSCOMSTR.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Deprecated/SourceCode/SCCS/SCCSCOMSTR.py b/test/Deprecated/SourceCode/SCCS/SCCSCOMSTR.py index a757495..2351c05 100644 --- a/test/Deprecated/SourceCode/SCCS/SCCSCOMSTR.py +++ b/test/Deprecated/SourceCode/SCCS/SCCSCOMSTR.py @@ -74,7 +74,7 @@ def cat(env, source, target): f.close() env = Environment(tools = ['default', 'SCCS'], BUILDERS={'Cat':Builder(action=cat)}, - SCCSCOM='%(_python_)s my-sccs-get.py $TARGET', + SCCSCOM=r'%(_python_)s my-sccs-get.py $TARGET', SCCSCOMSTR='Checking out $TARGET from our fake SCCS') env.Cat('aaa.out', 'aaa.in') env.Cat('bbb.out', 'bbb.in') |