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:
@@ -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)\"
|
||||
] ;
|
||||
}
|
||||
|
||||
|
||||
@@ -428,7 +428,7 @@ if [ modules.peek : NT ]
|
||||
if $(string) || $(string) != ""
|
||||
{
|
||||
local escaped = [ regex.escape $(string) : "&|()<>^" : "^" ] ;
|
||||
return "echo \"$(escaped)\"" ;
|
||||
return "echo $(escaped)" ;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user