diff --git a/allyourbase.jam b/allyourbase.jam index 105704795..4437dae61 100644 --- a/allyourbase.jam +++ b/allyourbase.jam @@ -1382,8 +1382,9 @@ rule split-path # The new jam executable has slightly different SUBST behavior which we need to # account for. -if $(NEW_BOOST_JAM) { +if $(JAM_VERSION[1]) >= 03 { +SEARCH on new-split.jam = $(BOOST_BUILD_PATH) ; include new-split.jam ; # this is temporary. } else { diff --git a/boost-build.jam b/boost-build.jam new file mode 100644 index 000000000..51a5d4813 --- /dev/null +++ b/boost-build.jam @@ -0,0 +1,7 @@ +# (C) Copyright David Abrahams 2001. Permission to copy, use, modify, sell and +# distribute this software is granted provided this copyright notice appears in +# all copies. This software is provided "as is" without express or implied +# warranty, and with no claim as to its suitability for any purpose. + +SEARCH on allyourbase.jam = $(BOOST_BUILD_PATH) ; +include allyourbase.jam ; diff --git a/build_system.htm b/build_system.htm index ef0301afe..ecdb21d04 100644 --- a/build_system.htm +++ b/build_system.htm @@ -1,35 +1,40 @@ - + Boost Build System - - - - c++boost.gif (8819 bytes) + c++boost.gif (8819 bytes)

Boost Build System

Synopsis

Boost.Build is a system for large project software construction built on - FTJam, - an open-source make replacement[1]. Key features are: + FTJam, an + open-source make replacement[1]. Key features are:

@@ -41,14 +46,20 @@