diff options
| -rwxr-xr-x | utils/common/deploy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/common/deploy.py b/utils/common/deploy.py index 39911e8..6ce8c43 100755 --- a/utils/common/deploy.py +++ b/utils/common/deploy.py @@ -169,7 +169,7 @@ def checkqt(qmakebin): m = re.search(r, ou) if not m == None: print "Qt found: %s" % m.group(1) - s = re.compile("4\..*") + s = re.compile("[45]\..*") n = re.search(s, m.group(1)) if not n == None: result = qmakebin |