From 8a62dd5d39948ab3ebf86e22a6d8f168a048e77f Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Wed, 22 Mar 2023 00:48:41 -0400 Subject: [PATCH] Update sanity check to accept binaries built for macOS 10.14 --- scripts/macosx-sanity-check.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/macosx-sanity-check.py b/scripts/macosx-sanity-check.py index 84137eb982..a1a6da10f4 100755 --- a/scripts/macosx-sanity-check.py +++ b/scripts/macosx-sanity-check.py @@ -2,7 +2,7 @@ # # This is used to verify that all the dependent libraries of a Mac OS X executable -# are present and that they are backwards compatible with at least 10.13. +# are present and that they are backwards compatible with at least 10.14. # Run with an executable as parameter # Will return 0 if the executable an all libraries are OK # Returns != 0 and prints some textural description on error @@ -29,7 +29,7 @@ cxxlib = None -macos_version_min = '10.13' +macos_version_min = '10.14' def usage(): print("Usage: " + sys.argv[0] + " ", sys.stderr)