From 3f966cf6a8654a0bc067738bcb95d489e197ad68 Mon Sep 17 00:00:00 2001 From: Osyotr Date: Fri, 1 Mar 2024 01:04:29 +0300 Subject: [PATCH] [bootstrap-vcpkg.sh] restore removed eval call (#37047) As suggested in https://github.com/microsoft/vcpkg/issues/37035#issuecomment-1969389886 cc @SchaichAlonso Fixes #37035 Fixes #37045 --- scripts/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index cefe72781ae510..32b9d4108e8dcd 100644 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -217,7 +217,7 @@ else cmakeConfigOptions=" $cmakeConfigOptions '-DCMAKE_JOB_POOL_COMPILE:STRING=compile' '-DCMAKE_JOB_POOL_LINK:STRING=link' '-DCMAKE_JOB_POOLS:STRING=compile=$VCPKG_MAX_CONCURRENCY;link=$VCPKG_MAX_CONCURRENCY' " fi - (cd "$buildDir" && cmake "$srcDir" $cmakeConfigOptions) || exit 1 + (cd "$buildDir" && eval cmake "$srcDir" $cmakeConfigOptions) || exit 1 (cd "$buildDir" && cmake --build .) || exit 1 rm -rf "$vcpkgRootDir/vcpkg"