summaryrefslogtreecommitdiff
path: root/evergreen
diff options
context:
space:
mode:
authorTausif Rahman <tausif.rahman@mongodb.com>2022-08-26 13:56:34 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-08-26 14:40:49 +0000
commit41d0a45aaf90b8e4e9a91f13a72e5623ecd963c4 (patch)
tree67e6ca05bf13d0c4b74e149143be93ee7fe2c022 /evergreen
parent3b17e5f7916fdf1a21dd162a079aeb9d06ca9425 (diff)
downloadmongo-41d0a45aaf90b8e4e9a91f13a72e5623ecd963c4.tar.gz
SERVER-68003 Make experiment_unified_ninja.vars the default
Diffstat (limited to 'evergreen')
-rw-r--r--evergreen/ninja_compile.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/evergreen/ninja_compile.sh b/evergreen/ninja_compile.sh
index f3b51ae5e1d..823944277be 100644
--- a/evergreen/ninja_compile.sh
+++ b/evergreen/ninja_compile.sh
@@ -5,6 +5,7 @@ cd src
set -o errexit
set -o verbose
+
activate_venv
python -m pip install ninja
if [ "Windows_NT" = "$OS" ]; then
@@ -13,8 +14,8 @@ if [ "Windows_NT" = "$OS" ]; then
for i in "${compile_env[@]}"; do
echo "set $i" >> msvc.bat
done
- echo "ninja install-core" >> msvc.bat
+ echo "ninja -f ${ninja_file} install-core" >> msvc.bat
cmd /C msvc.bat
else
- eval ${compile_env} ninja install-core
+ eval ${compile_env} ninja -f ${ninja_file} install-core
fi