From c3fcb533fbdad2a514a78fce0300dbb4affa2ed2 Mon Sep 17 00:00:00 2001 From: fejalex <50714887+fejalex@users.noreply.github.com> Date: Sun, 9 May 2021 21:51:10 +0300 Subject: [PATCH] Fix bootstrap arguments Now user can specify compiler just by typing "bootstrap.bat gcc" or something that match to his compiler. First command-line argument will be passed to build.bat. --- bootstrap.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.bat b/bootstrap.bat index 03c98ffcc321..5e9d605e9403 100644 --- a/bootstrap.bat +++ b/bootstrap.bat @@ -12,7 +12,7 @@ ECHO Building Boost.Build engine if exist ".\tools\build\src\engine\b2.exe" del tools\build\src\engine\b2.exe pushd tools\build\src\engine -call .\build.bat +call .\build.bat %1 @ECHO OFF popd