From 13ac1bc464e10efa53ccff2c8ca3ea09adb5277f Mon Sep 17 00:00:00 2001 From: Pavel Kalian Date: Tue, 4 Jun 2024 13:31:51 -0300 Subject: [PATCH] Update the default MACOSX_DEPLOYMENT_TARGET to 11.0 Makes the build script pass with defaults in usual developer environment. Only the build on legacy systems should require fiddling with the settings as it is a corner case. --- ci/universal-build-macos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/universal-build-macos.sh b/ci/universal-build-macos.sh index 966afed607..c80f4c4e0e 100755 --- a/ci/universal-build-macos.sh +++ b/ci/universal-build-macos.sh @@ -14,7 +14,7 @@ set -x # OpenCPN needs to support even older macOS releases than the system # it is being built on, set MACOSX_DEPLOYMENT_TARGET environment # variable to use the respective SDK version. -export MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET:-10.13} +export MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET:-11.0} # URL of the repository to download the dependency bundle from export DEPS_BUNDLE_REPO="${DEPS_BUNDLE_REPO:-https://dl.cloudsmith.io/public/nohal/opencpn-dependencies/raw/files}"