2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-21 15:02:19 +00:00

Really fix include paths with spaces.

* util/print.jam: Do not quote the argument to the
  'echo' command on windows. It's special, and does not need quotes.
  Adding them will cause the quotes to always appear in the output,
  which would be different behaviour from Unix.

* tools/common.jam (response-file): Add quotes here.


[SVN r26836]
This commit is contained in:
Vladimir Prus
2005-01-24 15:16:00 +00:00
parent 9d1b318b43
commit 850bfc23a7
2 changed files with 2 additions and 2 deletions

View File

@@ -498,7 +498,7 @@ rule response-file ( targets + : sources * : the-response-file : properties * )
print.text
[ on $(targets[1])
return -D$(DEFINES) -I"$(INCLUDES)"
return -D$(DEFINES) -I\"$(INCLUDES)\"
] ;
}

View File

@@ -428,7 +428,7 @@ if [ modules.peek : NT ]
if $(string) || $(string) != ""
{
local escaped = [ regex.escape $(string) : "&|()<>^" : "^" ] ;
return "echo \"$(escaped)\"" ;
return "echo $(escaped)" ;
}
else
{