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

Fix quoting

[SVN r54302]
This commit is contained in:
Vladimir Prus
2009-06-24 13:49:46 +00:00
parent 4717c579af
commit 15ac3aad53

View File

@@ -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)" ;
}
}