From 55993db21fb1ef3afb3ca40ed66500472396eb36 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 27 Feb 2006 07:02:57 +0000 Subject: [PATCH] Escape backslashes in jam literals. Patch from Daniel James. [SVN r33133] --- src/tools/dmc.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/dmc.jam b/src/tools/dmc.jam index e0125e033..e04909733 100644 --- a/src/tools/dmc.jam +++ b/src/tools/dmc.jam @@ -37,7 +37,7 @@ rule init ( version ? : command * : options * ) # DMC linker is sensitive the the direction of slashes, and # won't link if forward slashes are used in command. root = [ sequence.join [ regex.split $(root) "/" ] : "\\" ] ; - flags dmc .root $(condition) : $(root)\bin\ ; + flags dmc .root $(condition) : $(root)\\bin\\ ; } else {