Qt 5.7 requires OS X 10.8+

This commit is contained in:
Marius Kintel 2016-06-25 17:29:17 -04:00
parent 7036a6dd5c
commit d5bf793814

View file

@ -94,7 +94,7 @@ def validate_lib(lib):
# Check deployment target # Check deployment target
m = re.search("LC_VERSION_MIN_MACOSX.*\n(.*)\n\s+version (.*)", output, re.MULTILINE) m = re.search("LC_VERSION_MIN_MACOSX.*\n(.*)\n\s+version (.*)", output, re.MULTILINE)
deploymenttarget = float(m.group(2)) deploymenttarget = float(m.group(2))
if deploymenttarget > 10.7: if deploymenttarget > 10.8:
print "Error: Unsupported deployment target " + m.group(2) + " found: " + lib print "Error: Unsupported deployment target " + m.group(2) + " found: " + lib
return False return False
# We don't support Snow Leopard anymore # We don't support Snow Leopard anymore