summaryrefslogtreecommitdiff
path: root/Jamroot
diff options
context:
space:
mode:
authorVladimir Prus <vladimir.prus@gmail.com>2016-05-21 23:16:09 +0300
committerVladimir Prus <vladimir.prus@gmail.com>2016-05-21 23:16:09 +0300
commitfb8338770e930bca5ba24dbb9240f5c2e420bd03 (patch)
treeba06495d2f11b021109946752a67901e10167622 /Jamroot
parentc686957ac590e2ef8459e54a38ff96eede052d92 (diff)
downloadboost-fb8338770e930bca5ba24dbb9240f5c2e420bd03.tar.gz
Load optional components only when their build directory is present.
Non-recursive super-project checkout still has empty directory for all components.
Diffstat (limited to 'Jamroot')
-rw-r--r--Jamroot4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jamroot b/Jamroot
index 89129ebdf1..5f38455af5 100644
--- a/Jamroot
+++ b/Jamroot
@@ -261,12 +261,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 ;
}