From 277eca1b98afd275d9c4d975986042011b9797cb Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 20 May 2021 00:16:33 +0200 Subject: [PATCH] devops: install all FF system dependencies with --full on build (#6657) Before that it actually didn't install all needed dependencies and failed after that when starting the compiler suite. WebKit also installs dependencies with apt, so it should be fine to install them on OS level. --- browser_patches/firefox/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser_patches/firefox/build.sh b/browser_patches/firefox/build.sh index 115f2fea54..a8ad86b190 100755 --- a/browser_patches/firefox/build.sh +++ b/browser_patches/firefox/build.sh @@ -87,7 +87,7 @@ if [[ $1 == "--full" || $2 == "--full" ]]; then rm -rf "$HOME/.mozbuild/node" mv node "$HOME/.mozbuild/" elif [[ "$(uname)" == "Darwin" || "$(uname)" == "Linux" ]]; then - SHELL=/bin/sh ./mach --no-interactive bootstrap --application-choice=browser --no-system-changes + SHELL=/bin/sh ./mach --no-interactive bootstrap --application-choice=browser fi if [[ ! -z "${WIN32_REDIST_DIR}" ]]; then # Having this option in .mozconfig kills incremental compilation.