mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 13:35:00 +00:00
Jamroot fixes: use right path for headers, simplify some things.
[SVN r64794]
This commit is contained in:
parent
8b93a7bd9d
commit
0f61b0e1ec
2 changed files with 5 additions and 5 deletions
7
Jamroot
7
Jamroot
|
@ -129,6 +129,7 @@ import package ;
|
|||
import sequence ;
|
||||
import xsltproc ;
|
||||
import set ;
|
||||
import path ;
|
||||
|
||||
path-constant BOOST_ROOT : . ;
|
||||
constant BOOST_VERSION : 1.44.0 ;
|
||||
|
@ -242,9 +243,7 @@ rule boost-install ( libraries * )
|
|||
|
||||
install stage : $(libraries) : <location>$(BOOST_STAGE_LOCATE) ;
|
||||
|
||||
local c = [ project.current ] ;
|
||||
local project-module = [ $(c).project-module ] ;
|
||||
module $(project-module)
|
||||
module [ CALLER_MODULE ]
|
||||
{
|
||||
explicit stage ;
|
||||
explicit install ;
|
||||
|
@ -261,4 +260,4 @@ headers =
|
|||
|
||||
# Declare special top-level targets that build and install the desired variants
|
||||
# of the libraries.
|
||||
boostcpp.declare_targets $(all-libraries) : $(headers) ;
|
||||
boostcpp.declare-targets $(all-libraries) : $(headers) ;
|
||||
|
|
|
@ -31,6 +31,7 @@ import package ;
|
|||
##############################################################################
|
||||
|
||||
BOOST_ROOT = [ modules.binding $(__name__) ] ;
|
||||
BOOST_ROOT = $(BOOST_ROOT:D) ;
|
||||
|
||||
rule set-version ( version )
|
||||
{
|
||||
|
@ -552,7 +553,7 @@ rule libraries-to-install ( existing-libraries * )
|
|||
}
|
||||
}
|
||||
|
||||
rule declare_targets ( all-libraries * : headers * )
|
||||
rule declare-targets ( all-libraries * : headers * )
|
||||
{
|
||||
configure.register-components $(all-libraries) ;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue