1
1
#! /bin/sh
2
- # Copyright 2019 Rene Rivera
2
+ # Copyright 2019-2020 Rene Rivera
3
3
# Copyright (C) 2005, 2006 Douglas Gregor.
4
4
# Copyright (C) 2006 The Trustees of Indiana University
5
5
#
@@ -152,7 +152,7 @@ Configuration:
152
152
-h, --help display this help and exit
153
153
--with-bjam=BJAM use existing Boost.Jam executable (bjam)
154
154
[automatically built]
155
- --with-toolset=TOOLSET use specific Boost.Build toolset
155
+ --with-toolset=TOOLSET use specific B2 toolset
156
156
[automatically detected]
157
157
--show-libraries show the set of libraries that require build
158
158
and installation steps (i.e., those libraries
@@ -212,7 +212,7 @@ if test "x$TOOLSET" = x; then
212
212
;;
213
213
214
214
* )
215
- # Not supported by Boost.Build
215
+ # Not supported by B2
216
216
;;
217
217
esac
218
218
fi
@@ -221,13 +221,12 @@ rm -f config.log
221
221
222
222
# Build bjam
223
223
if test " x$BJAM " = x; then
224
- $ECHO -n " Building Boost.Build engine with toolset $TOOLSET ... "
224
+ $ECHO " Building B2 engine.. "
225
225
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)
227
227
if [ $? -ne 0 ]; then
228
228
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"
231
230
exit 1
232
231
fi
233
232
cd " $pwd "
@@ -327,14 +326,14 @@ if test -r "project-config.jam"; then
327
326
counter=` expr $counter + 1`
328
327
done
329
328
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 "
331
330
mv " project-config.jam" " project-config.jam.$counter "
332
331
fi
333
332
334
333
# 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 ..."
336
335
cat > project-config.jam << EOF
337
- # Boost.Build Configuration
336
+ # B2 Configuration
338
337
# Automatically generated by bootstrap.sh
339
338
340
339
import option ;
@@ -410,7 +409,7 @@ Further information:
410
409
- Getting started guide:
411
410
http://www.boost.org/more/getting_started/unix-variants.html
412
411
413
- - Boost.Build documentation:
412
+ - B2 documentation:
414
413
http://www.boost.org/build/
415
414
416
415
EOF
0 commit comments