diff options
author | Steven Knight <knight@baldmt.com> | 2005-01-03 20:35:15 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-01-03 20:35:15 (GMT) |
commit | bf0edb7f66d1585a88f19184800b0d63729be91d (patch) | |
tree | fca04c48370ff7351b526ad7d815165699088622 /test/scan-once.py | |
parent | 0e6b845e583831cd883b0103583abbeb197f264f (diff) | |
download | SCons-bf0edb7f66d1585a88f19184800b0d63729be91d.zip SCons-bf0edb7f66d1585a88f19184800b0d63729be91d.tar.gz SCons-bf0edb7f66d1585a88f19184800b0d63729be91d.tar.bz2 |
Win32 portability fixes.
Diffstat (limited to 'test/scan-once.py')
-rw-r--r-- | test/scan-once.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scan-once.py b/test/scan-once.py index 4436310..cdacccc 100644 --- a/test/scan-once.py +++ b/test/scan-once.py @@ -96,7 +96,7 @@ test.write(['SLF', 'SConscript'], """\ ### don't seem to work well! ARRGH!!!! ### -experimenttop = "%s" +experimenttop = r"%s" import os import os.path @@ -287,7 +287,7 @@ static_hdrs = "libg_w.h" #exported_hdrs = generated_hdrs + " " + static_hdrs exported_hdrs = static_hdrs lib_name = "g" -lib_fullname = "libg.a" +lib_fullname = env.subst("${LIBPREFIX}g${LIBSUFFIX}") lib_srcs = string.split("libg_1.c libg_2.c libg_3.c") import re lib_objs = map(lambda x: re.sub("\.c$", ".o", x), lib_srcs) |