summaryrefslogtreecommitdiff
path: root/Jamroot
diff options
context:
space:
mode:
authorVladimir Prus <vladimir@codesourcery.com>2014-12-03 23:45:02 +0300
committerVladimir Prus <vladimir@codesourcery.com>2014-12-03 23:46:38 +0300
commit42b0796d6a197ebfb4cbe715f62e88b3bbb4a387 (patch)
treeec27a6ee7b97ab99233f8494aefb11006f2ef0e1 /Jamroot
parentcc29806c2dc8f4edbd9afec57fb416f2a94a4ef7 (diff)
downloadboost-42b0796d6a197ebfb4cbe715f62e88b3bbb4a387.tar.gz
Fix checking for tools/inspect to work regardless of cwd.
Diffstat (limited to 'Jamroot')
-rw-r--r--Jamroot4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jamroot b/Jamroot
index 35ae3c0c47..8885fd5f24 100644
--- a/Jamroot
+++ b/Jamroot
@@ -235,12 +235,12 @@ for local l in $(all-libraries)
use-project /boost/$(l) : libs/$(l)/build ;
}
-if [ path.exists tools/inspect ]
+if [ path.exists $(BOOST_ROOT)/tools/inspect ]
{
use-project /boost/tools/inspect : tools/inspect/build ;
}
-if [ path.exists libs/wave/tool ]
+if [ path.exists $(BOOST_ROOT)/libs/wave/tool ]
{
use-project /boost/libs/wave/tool : libs/wave/tool/build ;
}