From 937f717ceddf21c272ab1d281098004b756afde5 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 28 Sep 2008 13:45:36 +0000 Subject: [PATCH] Quote the command line arguments, so arguments with whitespace will work. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27769 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- build/jam/MiscRules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/jam/MiscRules b/build/jam/MiscRules index b687926914..7fdf7f075b 100644 --- a/build/jam/MiscRules +++ b/build/jam/MiscRules @@ -224,7 +224,7 @@ actions RunCommandLine1 { eval "${target}=${t}" done $(HOST_ADD_BUILD_COMPATIBILITY_LIB_DIR) - $(COMMAND_LINE) + "$(COMMAND_LINE)" }