diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-12-05 14:51:22 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-12-05 14:51:22 +0200 |
commit | 1dca20865e6dbcb37d22b9563c6e34ab5fe88a6e (patch) | |
tree | 70ae001c20b297089cabe42f37bb2626c34cf984 | |
parent | 5b18d0d73980102aadc91678b1454b624cf6b253 (diff) |
Make bpkg-pkg-build print plan in build scripts
-rw-r--r-- | build-mingw.bat | 2 | ||||
-rw-r--r-- | build-msvc.bat | 2 | ||||
-rwxr-xr-x | build.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/build-mingw.bat b/build-mingw.bat index 5db670e..fff31d5 100644 --- a/build-mingw.bat +++ b/build-mingw.bat @@ -295,7 +295,7 @@ bpkg-stage %verbose% add %BUILD2_REPO% bpkg-stage %verbose% fetch %timeout% %trust% @if errorlevel 1 goto error -bpkg-stage %verbose% build %timeout% --for install --yes build2 bpkg bdep +bpkg-stage %verbose% build %timeout% --for install --yes --plan= build2 bpkg bdep @if errorlevel 1 goto error bpkg-stage %verbose% install build2 bpkg bdep diff --git a/build-msvc.bat b/build-msvc.bat index 9487de6..3f525d8 100644 --- a/build-msvc.bat +++ b/build-msvc.bat @@ -259,7 +259,7 @@ bpkg-stage %verbose% add %BUILD2_REPO% bpkg-stage %verbose% fetch %timeout% %trust% @if errorlevel 1 goto error -bpkg-stage %verbose% build %timeout% --for install --yes build2 bpkg bdep +bpkg-stage %verbose% build %timeout% --for install --yes --plan= build2 bpkg bdep @if errorlevel 1 goto error bpkg-stage %verbose% install build2 bpkg bdep @@ -337,7 +337,7 @@ config.install.sudo="$conf_sudo" run bpkg-stage $verbose add "$BUILD2_REPO" run bpkg-stage $verbose $bpkg_fetch_ops fetch -run bpkg-stage $verbose $jobs $bpkg_build_ops build --for install --yes build2 bpkg bdep +run bpkg-stage $verbose $jobs $bpkg_build_ops build --for install --yes --plan= build2 bpkg bdep run bpkg-stage $verbose $jobs install build2 bpkg bdep run which b |