From e64fd173bb512814f8c9c7a291536cf65c80b40c Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 29 Jan 2020 11:55:29 -0800 Subject: [PATCH] devops: fix firefox building script on Mac 10.15.1 --- 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 d784be4df7..a2cd370054 100755 --- a/browser_patches/firefox/build.sh +++ b/browser_patches/firefox/build.sh @@ -9,7 +9,7 @@ cd "checkout" if [[ "$(uname)" == "Darwin" ]]; then # Firefox currently does not build on 10.15 out of the box - it requires SDK for 10.14. # Make sure the SDK is out there. - if [[ $(sw_vers -productVersion) == "10.15" ]]; then + if [[ $(sw_vers -productVersion) == 10.15* ]]; then if ! [[ -d $HOME/SDK-archive/MacOSX10.14.sdk ]]; then echo "As of Nov 2019, Firefox does not build on Mac 10.15 without 10.14 SDK." echo "Check out instructions on getting 10.14 sdk at https://developer.mozilla.org/en-US/docs/Mozilla/Developer_guide/Build_Instructions/Mac_OS_X_Prerequisites"