Skip to content

Commit

Permalink
Update sanity check to accept binaries built for macOS 10.14
Browse files Browse the repository at this point in the history
  • Loading branch information
kintel committed Mar 22, 2023
1 parent 62ca8bd commit 6847d45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/macosx-sanity-check.py
Expand Up @@ -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
Expand All @@ -29,7 +29,7 @@

cxxlib = None

macos_version_min = '10.13'
macos_version_min = '10.14'

def usage():
print("Usage: " + sys.argv[0] + " <executable>", sys.stderr)
Expand Down

0 comments on commit 6847d45

Please sign in to comment.