Skip to content

Commit

Permalink
[bootstrap-vcpkg.sh] restore removed eval call (#37047)
Browse files Browse the repository at this point in the history
As suggested in
#37035 (comment)
cc @SchaichAlonso 

Fixes #37035
Fixes #37045
  • Loading branch information
Osyotr authored Feb 29, 2024
1 parent 2ac6ba1 commit 3f966cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 3f966cf

Please sign in to comment.