From 15ac3aad53d67c8a0f1f336bcb3db09d94785bdd Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 24 Jun 2009 13:49:46 +0000 Subject: [PATCH] Fix quoting [SVN r54302] --- v2/tools/common.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/common.jam b/v2/tools/common.jam index 35c887cfc..7e52ddaa2 100644 --- a/v2/tools/common.jam +++ b/v2/tools/common.jam @@ -528,7 +528,7 @@ rule variable-setting-command ( variable : value ) # sequence that messes up the executed export command which then reports # that the passed variable name is incorrect. # But we have a check for cygwin in kernel/bootstrap.jam already. - return "$(variable)=$(q)$(value)$(nl)export $(variable)$(q)$(nl)" ; + return "$(variable)=$(q)$(value)$(q)$(nl)export $(variable)$(nl)" ; } }