Only trust errors for macdeployqt 5+ #4464

This commit is contained in:
Nick Bolton 2015-03-21 22:01:49 +00:00
parent 162ed1fef5
commit 9706252fb9
1 changed files with 4 additions and 1 deletions

View File

@ -788,6 +788,9 @@ class InternalCommands:
print output[1] print output[1]
if "ERROR" in output[1]: if "ERROR" in output[1]:
(qMajor, qMinor, qRev) = self.getQmakeVersion()
if qMajor >= 5:
# only listen to errors in qt 5+
raise Exception("macdeployqt failed") raise Exception("macdeployqt failed")
def signmac(self): def signmac(self):