2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Escape backslashes in jam literals.

Patch from Daniel James.


[SVN r33133]
This commit is contained in:
Vladimir Prus
2006-02-27 07:02:57 +00:00
parent 09725043ef
commit 55993db21f

View File

@@ -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
{