summaryrefslogtreecommitdiffstats
path: root/test/CC.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-11-24 23:15:01 (GMT)
committerSteven Knight <knight@baldmt.com>2001-11-24 23:15:01 (GMT)
commit378373defaf150feb90cd54d13626516c6dbe1b4 (patch)
treefc9783004f1cae3c3558846d6f9a1c589e104a3e /test/CC.py
parent139a0052dc0bff059dc9b8cf1739396304e7c129 (diff)
downloadSCons-378373defaf150feb90cd54d13626516c6dbe1b4.zip
SCons-378373defaf150feb90cd54d13626516c6dbe1b4.tar.gz
SCons-378373defaf150feb90cd54d13626516c6dbe1b4.tar.bz2
More NT portability fixes.
Diffstat (limited to 'test/CC.py')
-rw-r--r--test/CC.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CC.py b/test/CC.py
index 5d2985f..70e6da5 100644
--- a/test/CC.py
+++ b/test/CC.py
@@ -47,7 +47,7 @@ foo.Program(target = 'foo', source = 'foo.c')
bar.Program(target = 'bar', source = 'bar.c')
""" % python)
-test.write('foo.c', """
+test.write('foo.c', r"""
int
main(int argc, char *argv[])
{
@@ -57,7 +57,7 @@ main(int argc, char *argv[])
}
""")
-test.write('bar.c', """
+test.write('bar.c', r"""
int
main(int argc, char *argv[])
{