summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jamroot11
1 files changed, 9 insertions, 2 deletions
diff --git a/Jamroot b/Jamroot
index c7561fe1bb..35ae3c0c47 100644
--- a/Jamroot
+++ b/Jamroot
@@ -235,8 +235,15 @@ for local l in $(all-libraries)
use-project /boost/$(l) : libs/$(l)/build ;
}
-use-project /boost/tools/inspect : tools/inspect/build ;
-use-project /boost/libs/wave/tool : libs/wave/tool/build ;
+if [ path.exists tools/inspect ]
+{
+ use-project /boost/tools/inspect : tools/inspect/build ;
+}
+
+if [ path.exists libs/wave/tool ]
+{
+ use-project /boost/libs/wave/tool : libs/wave/tool/build ;
+}
# This rule should be called from libraries' Jamfiles and will create two
# targets, "install" and "stage", that will install or stage that library. The