Fix checking for tools/inspect to work regardless of cwd.

This commit is contained in:
Vladimir Prus 2014-12-03 23:45:02 +03:00
parent cc29806c2d
commit 42b0796d6a

View file

@ -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 ;
}