summaryrefslogtreecommitdiff
path: root/test/option
diff options
context:
space:
mode:
authorThomas Tanner <trtanner@btinternet.com>2016-01-30 22:39:17 +0000
committerThomas Tanner <trtanner@btinternet.com>2016-01-30 22:39:17 +0000
commit92fd45b8c36d14e9a4edb2a4b5a78882167e7525 (patch)
tree912fb4db4a3e452f811ab3a922a05d76bf4dba10 /test/option
parentcefa78744e92f319112c1a5fc26f34727e9bbc5c (diff)
downloadscons-92fd45b8c36d14e9a4edb2a4b5a78882167e7525.tar.gz
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/option')
-rw-r--r--test/option/debug-findlibs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/option/debug-findlibs.py b/test/option/debug-findlibs.py
index ce971998..9d5c82ab 100644
--- a/test/option/debug-findlibs.py
+++ b/test/option/debug-findlibs.py
@@ -47,7 +47,7 @@ env = Environment(OBJSUFFIX = '.ooo', PROGSUFFIX = '.xxx',
LIBS = ['iii', 'jjj', 'kkk', 'lll', 'mmm'],
LIBPREFIXES = ['a-', 'b-', 'c-'],
LIBSUFFIXES = ['.aaa', '.bbb', '.ccc'],
- LINKCOM = '%(_python_)s cat.py $TARGET $SOURCES')
+ LINKCOM = r'%(_python_)s cat.py $TARGET $SOURCES')
env.Program('foo', 'a.ooo',)
""" % locals())