$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r54302 - trunk/tools/build/v2/tools
From: ghost_at_[hidden]
Date: 2009-06-24 09:49:47
Author: vladimir_prus
Date: 2009-06-24 09:49:46 EDT (Wed, 24 Jun 2009)
New Revision: 54302
URL: http://svn.boost.org/trac/boost/changeset/54302
Log:
Fix quoting
Text files modified:
trunk/tools/build/v2/tools/common.jam | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/tools/build/v2/tools/common.jam
==============================================================================
--- trunk/tools/build/v2/tools/common.jam (original)
+++ trunk/tools/build/v2/tools/common.jam 2009-06-24 09:49:46 EDT (Wed, 24 Jun 2009)
@@ -528,7 +528,7 @@
# 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)" ;
}
}