2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 13:22:11 +00:00

add missing quoting for Win32

[SVN r36702]
This commit is contained in:
Dave Abrahams
2007-01-12 05:18:26 +00:00
parent b4400ed476
commit 4e73ce5c41

View File

@@ -434,12 +434,12 @@ RM = [ common.rm-command ] ;
actions capture-output bind INPUT_FILES output-file
{
$(PATH_SETUP)
$(LAUNCHER) $(>) $(ARGS) "$(INPUT_FILES)" > $(output-file) 2>&1
$(LAUNCHER) "$(>)" $(ARGS) "$(INPUT_FILES)" > "$(output-file)" 2>&1
$(SET_STATUS)
$(RUN_OUTPUT_NL) >> $(output-file)
echo EXIT STATUS: $(STATUS) >> $(output-file)
$(RUN_OUTPUT_NL) >> "$(output-file)"
echo EXIT STATUS: $(STATUS) >> "$(output-file)"
if $(STATUS_0)
$(CP) $(output-file) $(<)
$(CP) "$(output-file)" "$(<)"
$(ENDIF)
$(SHELL_SET)verbose=$(VERBOSE_TEST)
if $(STATUS_NOT_0)
@@ -447,7 +447,7 @@ actions capture-output bind INPUT_FILES output-file
$(ENDIF)
if $(VERBOSE)
echo ====== BEGIN OUTPUT ======
$(CATENATE) $(output-file)
$(CATENATE) "$(output-file)"
echo ====== END OUTPUT ======
$(ENDIF)
exit $(STATUS)