diff options
Diffstat (limited to 'test/Interactive/implicit-VariantDir.py')
-rw-r--r-- | test/Interactive/implicit-VariantDir.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Interactive/implicit-VariantDir.py b/test/Interactive/implicit-VariantDir.py index 8975e90..5ef4583 100644 --- a/test/Interactive/implicit-VariantDir.py +++ b/test/Interactive/implicit-VariantDir.py @@ -37,7 +37,6 @@ deps must be cleared on the source files. """ import os.path -import string import TestSCons @@ -94,7 +93,7 @@ test.write(['src', 'inc', 'foo.h'], """ # Start scons, to build only "build/foo" build_foo_exe = os.path.join('build', 'foo' + TestSCons._exe) -_build_foo_exe_ = '"%s"' % string.replace(build_foo_exe, '\\', '\\\\') +_build_foo_exe_ = '"%s"' % build_foo_exe.replace('\\', '\\\\') abs_foo_exe = test.workpath(build_foo_exe) scons = test.start(arguments = '--interactive', combine=1) |