diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-06 11:30:02 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-09-06 11:30:02 +0200 |
commit | 1347d8b34b8675c8bb85aaf28b23e6bcbd121f2b (patch) | |
tree | dde6d4fed1289f33ad3ba723c744895ede6813ee /build-mingw.bat | |
parent | d2fbd1b0c7d11372b89ec7655dc80fa8b957d96c (diff) |
Minor updates to build scripts
Diffstat (limited to 'build-mingw.bat')
-rw-r--r-- | build-mingw.bat | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/build-mingw.bat b/build-mingw.bat index ed4fc31..2ea001d 100644 --- a/build-mingw.bat +++ b/build-mingw.bat @@ -19,7 +19,7 @@ echo Example usage: echo. echo %0 C:\mingw\bin\g++ D:\build2 echo. -echo See the INSTALL file for details. +echo See the BOOTSTRAP-MINGW file for details. echo. goto end @@ -120,6 +120,12 @@ build2\build2\b-boot configure^ build2\build2\b-boot install @if errorlevel 1 goto error +where b-stage +@if errorlevel 1 goto error + +where bpkg-stage +@if errorlevel 1 goto error + b-stage --version @if errorlevel 1 goto error @@ -155,6 +161,12 @@ bpkg-stage build --yes build2 bpkg bpkg-stage install build2 bpkg @if errorlevel 1 goto error +where b +@if errorlevel 1 goto error + +where bpkg +@if errorlevel 1 goto error + b --version @if errorlevel 1 goto error |