From a559b72e1802054d6eec2ec0f6c894f96f71c052 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 21 Nov 2025 13:28:49 +0500 Subject: [PATCH] build-deps - fix boost project cache reset targeting wrong path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Noticed by another "The system cannot find the path specified." in logs 😅 --- win/build-deps.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/build-deps.cmd b/win/build-deps.cmd index 8c3cec70e4..a95ad39b1d 100644 --- a/win/build-deps.cmd +++ b/win/build-deps.cmd @@ -424,7 +424,7 @@ set BOOST_LIBS=--with-system --with-regex --with-thread --with-program_options - :: NOTE Boost is fast to build with limited set of libraries so build it always. cd "%DEPENDENCY_DIR%" call cecho.cmd 0 13 "Building %DEPENDENCY_NAME% %BOOST_LIBS% Please be patient, this will take a while." -IF EXIST "%DEPENDENCY_DIR%\bin.v2\project-cache.jam" del "%DEPS_DIR%\boost\bin.v2\project-cache.jam" +IF EXIST "%DEPENDENCY_DIR%\bin.v2\project-cache.jam" del "%DEPENDENCY_DIR%\bin.v2\project-cache.jam" call .\b2 toolset=%BOOST_TOOLSET% runtime-link=shared address-model=%ARCH_BITS% --abbreviate-paths -j%IFCOS_NUM_BUILD_PROCS% ^ variant=%DEBUG_OR_RELEASE_LOWERCASE% %BOOST_WIN_API% %BOOST_LIBS% stage --stagedir=%DEPENDENCY_INSTALL_DIR%