From 5827fb504bce8f0e9fb9aca53d2326ee0b401373 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 1 Mar 2022 13:44:07 -0700 Subject: [PATCH] devops: fix firefox-beta compilation on windows (#12444) --- browser_patches/firefox-beta/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/browser_patches/firefox-beta/build.sh b/browser_patches/firefox-beta/build.sh index 7c8b32c610..4370da6848 100755 --- a/browser_patches/firefox-beta/build.sh +++ b/browser_patches/firefox-beta/build.sh @@ -96,6 +96,8 @@ if [[ $1 == "--full" || $2 == "--full" || $1 == "--bootstrap" ]]; then if [[ ! -z "${WIN32_REDIST_DIR}" ]]; then # Having this option in .mozconfig kills incremental compilation. echo "export WIN32_REDIST_DIR=\"$WIN32_REDIST_DIR\"" >> .mozconfig + echo "export MSVC_C_RUNTIME_DLL=vcruntime140.dll" >> .mozconfig + echo "export MSVC_CXX_RUNTIME_DLL=msvcp140.dll" >> .mozconfig fi fi