11#! /bin/sh
2- # Copyright 2019 Rene Rivera
2+ # Copyright 2019-2020 Rene Rivera
33# Copyright (C) 2005, 2006 Douglas Gregor.
44# Copyright (C) 2006 The Trustees of Indiana University
55#
@@ -152,7 +152,7 @@ Configuration:
152152 -h, --help display this help and exit
153153 --with-bjam=BJAM use existing Boost.Jam executable (bjam)
154154 [automatically built]
155- --with-toolset=TOOLSET use specific Boost.Build toolset
155+ --with-toolset=TOOLSET use specific B2 toolset
156156 [automatically detected]
157157 --show-libraries show the set of libraries that require build
158158 and installation steps (i.e., those libraries
@@ -212,7 +212,7 @@ if test "x$TOOLSET" = x; then
212212 ;;
213213
214214 * )
215- # Not supported by Boost.Build
215+ # Not supported by B2
216216 ;;
217217 esac
218218fi
@@ -221,13 +221,12 @@ rm -f config.log
221221
222222# Build bjam
223223if test " x$BJAM " = x; then
224- $ECHO -n " Building Boost.Build engine with toolset $TOOLSET ... "
224+ $ECHO " Building B2 engine.. "
225225 pwd=` pwd`
226- (cd " $my_dir /tools/build/src/engine" && ./build.sh " $TOOLSET " ) > bootstrap.log 2>&1
226+ (cd " $my_dir /tools/build/src/engine" && ./build.sh)
227227 if [ $? -ne 0 ]; then
228228 echo
229- echo " Failed to build Boost.Build build engine"
230- echo " Consult 'bootstrap.log' for more details"
229+ echo " Failed to build B2 build engine"
231230 exit 1
232231 fi
233232 cd " $pwd "
@@ -327,14 +326,14 @@ if test -r "project-config.jam"; then
327326 counter=` expr $counter + 1`
328327 done
329328
330- echo " Backing up existing Boost.Build configuration in project-config.jam.$counter "
329+ echo " Backing up existing B2 configuration in project-config.jam.$counter "
331330 mv " project-config.jam" " project-config.jam.$counter "
332331fi
333332
334333# Generate user-config.jam
335- echo " Generating Boost.Build configuration in project-config.jam for $TOOLSET ..."
334+ echo " Generating B2 configuration in project-config.jam for $TOOLSET ..."
336335cat > project-config.jam << EOF
337- # Boost.Build Configuration
336+ # B2 Configuration
338337# Automatically generated by bootstrap.sh
339338
340339import option ;
@@ -410,7 +409,7 @@ Further information:
410409 - Getting started guide:
411410 http://www.boost.org/more/getting_started/unix-variants.html
412411
413- - Boost.Build documentation:
412+ - B2 documentation:
414413 http://www.boost.org/build/
415414
416415EOF
0 commit comments