From 82df8fbcf5057f0f7db350f6b08e19970bb8395f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hunold?= Date: Tue, 26 Mar 2013 10:19:43 +0000 Subject: [PATCH] change bjam to b2 in developer docs [SVN r83579] --- src/build/virtual-target.jam | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/build/virtual-target.jam b/src/build/virtual-target.jam index 4ac73deb3..6076806bf 100644 --- a/src/build/virtual-target.jam +++ b/src/build/virtual-target.jam @@ -621,12 +621,12 @@ class file-target : abstract-file-target # 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 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 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 @@ class file-target : abstract-file-target # will be test.o and the target we create below # will be test.o DEPENDS $(target:G=e) : $(target) ; - # Allow bjam / to work. This will not catch all + # Allow b2 / 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 @@ class action 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 : 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 ] ; for local i in $(implicit)