2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-11 23:52:20 +00:00

Windows fix

[SVN r39817]
This commit is contained in:
Vladimir Prus
2007-10-08 21:10:41 +00:00
parent 80178a91b6
commit 372d909cdb

View File

@@ -716,6 +716,9 @@ class Tester(TestCmd.TestCmd):
if dll_prefix:
tail = "lib" + tail
result = os.path.join(head, tail)
# If we try to use this name in Jamfile, we better
# convert \ to /, as otherwise we'd have to quote \.
result = string.replace(result, "\\", "/")
return result
def adjust_suffix(self, name):