From 372d909cdb520aebbd968617552e14700017eaa9 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 8 Oct 2007 21:10:41 +0000 Subject: [PATCH] Windows fix [SVN r39817] --- test/BoostBuild.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/BoostBuild.py b/test/BoostBuild.py index f5fa4c946..8888cc7f7 100644 --- a/test/BoostBuild.py +++ b/test/BoostBuild.py @@ -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):