Load optional components only when their build directory is present.

Non-recursive super-project checkout still has empty directory for
all components.
This commit is contained in:
Vladimir Prus 2016-05-21 23:16:09 +03:00 committed by Peter Dimov
parent 7e1ae5664a
commit f02b206a8b

View file

@ -248,12 +248,12 @@ for local l in $(all-libraries)
use-project /boost/$(l) : libs/$(l)/build ;
}
if [ path.exists $(BOOST_ROOT)/tools/inspect ]
if [ path.exists $(BOOST_ROOT)/tools/inspect/build ]
{
use-project /boost/tools/inspect : tools/inspect/build ;
}
if [ path.exists $(BOOST_ROOT)/libs/wave/tool ]
if [ path.exists $(BOOST_ROOT)/libs/wave/tool/build ]
{
use-project /boost/libs/wave/tool : libs/wave/tool/build ;
}