From 435c45f54161d7cc1a6ed04d85f4364ed56831fa Mon Sep 17 00:00:00 2001 From: Robert Ramey Date: Sun, 20 Feb 2005 22:21:09 +0000 Subject: [PATCH] quote command to permit spaces in directory names [SVN r27452] --- v1/como-win32-tools.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v1/como-win32-tools.jam b/v1/como-win32-tools.jam index 04e86b983..06905bc97 100644 --- a/v1/como-win32-tools.jam +++ b/v1/como-win32-tools.jam @@ -51,7 +51,7 @@ if ! $(COMO_PATH_SETUP) # do this once COMO_BACKEND_SETUP ?= "call "\"$(COMO_BACKEND_PATH)\\..\\Common7\\Tools\\vsvars32"\" >nul" ; COMO_BASE_SETUP ?= "set \"COMO_BASE=$(COMO_BASE)\"" ; COMO_PATH_SETUP ?= "" ; - COMO_CMD = $(COMO_BIN_DIRECTORY)como --$(COMO_BACKEND) ; + COMO_CMD = \"$(COMO_BIN_DIRECTORY)como\" --$(COMO_BACKEND) ; }