From 1eb32a6877cd3192acb86827f8b401967c9bed72 Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Fri, 11 Feb 2022 14:09:21 -0300 Subject: [PATCH] Jenkins: Fix Windows CMake toolchain file path --- .ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/build.sh b/.ci/build.sh index 445b5fbfb..76c714018 100644 --- a/.ci/build.sh +++ b/.ci/build.sh @@ -211,7 +211,7 @@ then echo [-] Using MSYSTEM [$MSYSTEM] # Point CMake to the toolchain file. - cmake_flags_extra="$cmake_flags_extra -D CMAKE_TOOLCHAIN_FILE=\"$cwd/cmake/$toolchain.cmake\"" + cmake_flags_extra="$cmake_flags_extra -D CMAKE_TOOLCHAIN_FILE=\"cmake/$toolchain.cmake\"" elif is_mac then # macOS lacks nproc, but sysctl can do the same job.