Include libraries that have "Jamfile", not "Jamfile.v2",

in the build.


[SVN r36704]
This commit is contained in:
Vladimir Prus 2007-01-12 08:53:56 +00:00
parent 6743d09de8
commit 48f6a686a4

View file

@ -95,6 +95,7 @@ import regex ;
import errors ;
import "class" : new ;
import common ;
import sequence ;
constant BOOST_VERSION : 1.35.0 ;
@ -165,8 +166,10 @@ project boost
# Setup convenient aliases for all libraries.
all-libraries =
[ MATCH .*libs/(.*)/build/.* : [ glob libs/*/build/Jamfile.v2 ] ]
[ MATCH .*libs/(.*)/build/.* : [ glob libs/*/build/Jamfile.v2 ] [ glob libs/*/build/Jamfile ] ]
;
all-libraries = [ sequence.unique $(all-libraries) ] ;
# First, the complicated libraries: where the target name in
# Jamfile is different from directory name.