$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r83579 - trunk/tools/build/v2/build
From: jhunold_at_[hidden]
Date: 2013-03-26 06:19:44
Author: jhunold
Date: 2013-03-26 06:19:43 EDT (Tue, 26 Mar 2013)
New Revision: 83579
URL: http://svn.boost.org/trac/boost/changeset/83579
Log:
change bjam to b2 in developer docs
Text files modified: 
   trunk/tools/build/v2/build/virtual-target.jam |    12 ++++++------                            
   1 files changed, 6 insertions(+), 6 deletions(-)
Modified: trunk/tools/build/v2/build/virtual-target.jam
==============================================================================
--- trunk/tools/build/v2/build/virtual-target.jam	(original)
+++ trunk/tools/build/v2/build/virtual-target.jam	2013-03-26 06:19:43 EDT (Tue, 26 Mar 2013)
@@ -621,12 +621,12 @@
             # For a real file target, we create a fake target depending on the
             # real target. This allows us to run
             #
-            #    bjam hello.o
+            #    b2 hello.o
             #
             # without trying to guess the name of the real target. Note that the
             # target has no directory name and uses a special <e> grist.
             #
-            # First, that means that "bjam hello.o" will build all known hello.o
+            # First, that means that "b2 hello.o" will build all known hello.o
             # targets. Second, the <e> grist makes sure this target will not be
             # confused with other targets, for example, if we have subdir 'test'
             # with target 'test' in it that includes a 'test.o' file, then the
@@ -634,7 +634,7 @@
             # will be <ptest/bin/gcc/debug>test.o and the target we create below
             # will be <e>test.o
             DEPENDS $(target:G=e) : $(target) ;
-            # Allow bjam <path-to-file>/<file> to work. This will not catch all
+            # Allow b2 <path-to-file>/<file> to work. This will not catch all
             # possible ways to refer to the path (relative/absolute, extra ".",
             # various "..", but should help in obvious cases.
             DEPENDS $(target:G=e:R=$(path)) : $(target) ;
@@ -842,15 +842,15 @@
         self.actual-sources +=
             [ actualize-source-type $(sources) : $(property-set) ] ;
 
-        # This is used to help bjam find dependencies in generated headers and
+        # This is used to help b2 find dependencies in generated headers and
         # other main targets, e.g. in:
         #
         #   make a.h : ....... ;
         #   exe hello : hello.cpp : <implicit-dependency>a.h ;
         #
-        # For bjam to find the dependency the generated target must be
+        # For b2 to find the dependency the generated target must be
         # actualized (i.e. have its Jam target constructed). In the above case,
-        # if we are building just hello ("bjam hello"), 'a.h' will not be
+        # if we are building just hello ("b2 hello"), 'a.h' will not be
         # actualized unless we do it here.
         local implicit = [ $(self.properties).get <implicit-dependency> ] ;
         for local i in $(implicit)