$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: grafikrobot_at_[hidden]
Date: 2007-12-27 17:32:18
Author: grafik
Date: 2007-12-27 17:32:18 EST (Thu, 27 Dec 2007)
New Revision: 42319
URL: http://svn.boost.org/trac/boost/changeset/42319
Log:
Fix disappearing requirements from building boost sublibs.
Text files modified:
sandbox/tools/build_extensions/ext/boost.jam | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Modified: sandbox/tools/build_extensions/ext/boost.jam
==============================================================================
--- sandbox/tools/build_extensions/ext/boost.jam (original)
+++ sandbox/tools/build_extensions/ext/boost.jam 2007-12-27 17:32:18 EST (Thu, 27 Dec 2007)
@@ -36,14 +36,15 @@
{
version ?= default ;
local requirements =
- [ extension.define boost $(version) : $(location) : $(options) ]
+ [ extension.define boost $(version) : $(location) : $(options) ] ;
+ requirements =
+ [ extension.refine boost $(version) : <tag>@boost-tag ]
<boost-version>$(version)
<boost-location>$(location)
<toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
<toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
#~ <warnings>off
;
- requirements = [ extension.refine boost $(version) : <tag>@boost-tag ] ;
local common-requirements =
<include>$(location)
;