Qt 5.7 requires OS X 10.8+
This commit is contained in:
parent
7036a6dd5c
commit
d5bf793814
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue