From d4b1af068d6c4f577d332888e6e966da45ae9cd9 Mon Sep 17 00:00:00 2001 From: Andrey Kashcheev Date: Mon, 15 Jun 2026 12:32:52 +0200 Subject: [PATCH] Use other command to skip boost installation `true` may be not available Relates-To: DATASDK-97 Signed-off-by: Andrey Kashcheev --- external/boost/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/boost/CMakeLists.txt b/external/boost/CMakeLists.txt index 9d0bae10f..68af6c190 100644 --- a/external/boost/CMakeLists.txt +++ b/external/boost/CMakeLists.txt @@ -35,7 +35,7 @@ endif() set(PATCH_BOOST_CMD "git apply -v ${CMAKE_CURRENT_SOURCE_DIR}/boost_182_json_noexceptions.diff") # Skip installation if boost is embedded, otherwise install it to a temporary location and use it from there. -set(INSTALL_BOOST_CMD ${CMAKE_COMMAND} -E true) +set(INSTALL_BOOST_CMD ${CMAKE_COMMAND} -E echo "Skipping boost install") if (NOT OLP_SDK_EMBED_BOOST_JSON) set(INSTALL_BOOST_CMD ${B2_CMD} install --with-json --prefix=${CMAKE_CURRENT_BINARY_DIR}/external_boost_install) endif()