summaryrefslogtreecommitdiffstats
path: root/test/sconsign
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2021-04-15 15:12:00 (GMT)
committerMats Wichmann <mats@linux.com>2021-04-15 15:12:00 (GMT)
commit113de336dc49772552cbd7dbf634b8708ecede88 (patch)
treeba642bae6e8aa706f1709685e951731be5c07609 /test/sconsign
parentb6e861cc465680f4c1ae5ec3327504da9afd5730 (diff)
downloadSCons-113de336dc49772552cbd7dbf634b8708ecede88.zip
SCons-113de336dc49772552cbd7dbf634b8708ecede88.tar.gz
SCons-113de336dc49772552cbd7dbf634b8708ecede88.tar.bz2
[PR 3930] put back accidentally dropped raw-string indicator
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'test/sconsign')
-rw-r--r--test/sconsign/script/SConsignFile.py4
-rw-r--r--test/sconsign/script/Signatures.py4
-rw-r--r--test/sconsign/script/no-SConsignFile.py4
3 files changed, 6 insertions, 6 deletions
diff --git a/test/sconsign/script/SConsignFile.py b/test/sconsign/script/SConsignFile.py
index 1d4cc1e..f7914fe 100644
--- a/test/sconsign/script/SConsignFile.py
+++ b/test/sconsign/script/SConsignFile.py
@@ -101,8 +101,8 @@ SConsignFile()
env1 = Environment(
PROGSUFFIX='.exe',
OBJSUFFIX='.obj',
- CCCOM=[['%(fake_cc_py)s', 'sub2', '$TARGET', '$SOURCE']],
- LINKCOM=[['%(fake_link_py)s', '$TARGET', '$SOURCE']],
+ CCCOM=[[r'%(fake_cc_py)s', 'sub2', '$TARGET', '$SOURCE']],
+ LINKCOM=[[r'%(fake_link_py)s', '$TARGET', '$SOURCE']],
)
env1.PrependENVPath('PATHEXT', '.PY')
env1.Program('sub1/hello.c')
diff --git a/test/sconsign/script/Signatures.py b/test/sconsign/script/Signatures.py
index b36292a..4f1d2b9 100644
--- a/test/sconsign/script/Signatures.py
+++ b/test/sconsign/script/Signatures.py
@@ -113,8 +113,8 @@ env1 = Environment(
# Specify the command lines with lists-of-lists so
# finding the implicit dependencies works even with
# spaces in the fake_*_py path names.
- CCCOM=[['%(fake_cc_py)s', 'sub2', '$TARGET', '$SOURCE']],
- LINKCOM=[['%(fake_link_py)s', '$TARGET', '$SOURCE']],
+ CCCOM=[[r'%(fake_cc_py)s', 'sub2', '$TARGET', '$SOURCE']],
+ LINKCOM=[[r'%(fake_link_py)s', '$TARGET', '$SOURCE']],
)
env1.PrependENVPath('PATHEXT', '.PY')
env1.Program('sub1/hello.c')
diff --git a/test/sconsign/script/no-SConsignFile.py b/test/sconsign/script/no-SConsignFile.py
index d12d151..a33a446 100644
--- a/test/sconsign/script/no-SConsignFile.py
+++ b/test/sconsign/script/no-SConsignFile.py
@@ -118,8 +118,8 @@ env1 = Environment(
# Specify the command lines with lists-of-lists so
# finding the implicit dependencies works even with
# spaces in the fake_*_py path names.
- CCCOM=[['%(fake_cc_py)s', 'sub2', '$TARGET', '$SOURCE']],
- LINKCOM=[['%(fake_link_py)s', '$TARGET', '$SOURCE']],
+ CCCOM=[[r'%(fake_cc_py)s', 'sub2', '$TARGET', '$SOURCE']],
+ LINKCOM=[[r'%(fake_link_py)s', '$TARGET', '$SOURCE']],
)
env1.PrependENVPath('PATHEXT', '.PY')
env1.Program('sub1/hello.c')