When building Boost, stop on first error by default.

[SVN r57990]
This commit is contained in:
Vladimir Prus 2009-11-28 08:29:03 +00:00
parent 7861cc2196
commit 842b01c1d6
2 changed files with 9 additions and 1 deletions

View file

@ -32,7 +32,12 @@ REM export BOOST_JAM_TOOLSET, and I don't know how to do that
REM properly. Default to msvc for now.
set toolset=msvc
ECHO using %toolset% ; > project-config.jam
ECHO import option ; > project-config.jam
ECHO. >> project-config.jam
ECHO using %toolset% ; >> project-config.jam
ECHO. >> project-config.jam
ECHO option.set keep-going : false ; >> project-config.jam
ECHO. >> project-config.jam
ECHO.
ECHO Bootstrapping is done. To build, run:

View file

@ -373,6 +373,9 @@ option.set prefix : $PREFIX ;
option.set exec-prefix : $EPREFIX ;
option.set libdir : $LIBDIR ;
option.set includedir : $INCLUDEDIR ;
# Stop on first error
option.set keep-going : false ;
EOF
cat << EOF