From a098ac40c29381c74cd4094477c1eed6f6860f9b Mon Sep 17 00:00:00 2001 From: stevenknight Date: Thu, 25 Jul 2002 01:54:05 +0000 Subject: [PATCH] Win32 portability in Repository tests. git-svn-id: http://scons.tigris.org/svn/scons/trunk@421 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- test/Repository/Program.py | 2 +- test/Repository/include.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Repository/Program.py b/test/Repository/Program.py index 854ede28..c3eff535 100644 --- a/test/Repository/Program.py +++ b/test/Repository/Program.py @@ -42,7 +42,7 @@ work_foo = test.workpath('work', 'foo' + _exe) work_foo_c = test.workpath('work', 'foo.c') test.write(['work', 'SConstruct'], r""" -Repository('%s') +Repository(r'%s') env = Environment() env.Program(target= 'foo', source = Split('aaa.c bbb.c foo.c')) """ % repository) diff --git a/test/Repository/include.py b/test/Repository/include.py index 1538e1ac..28bc7cee 100644 --- a/test/Repository/include.py +++ b/test/Repository/include.py @@ -41,7 +41,7 @@ work_foo = test.workpath('work', 'foo' + _exe) work_foo_h = test.workpath('work', 'foo.h') test.write(['work', 'SConstruct'], """ -Repository('%s') +Repository(r'%s') env = Environment(CPPPATH = ['.']) env.Program(target = 'foo', source = 'foo.c') """ % repository) -- 2.26.2