summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@qt.io>2018-10-12 12:07:21 +0200
committerMichael BrĂ¼ning <michael.bruning@qt.io>2018-10-12 10:39:54 +0000
commit3344194b9503ebc8f6b21cbfb39c89624facc0e7 (patch)
treea36232aab0b281721a6b175df62de752578e8fee /mkspecs
parentf8a575b24f431b40b3ce4b2f2a4d58b97a63f9c8 (diff)
[macOS] Fix build with XCode version 10
Somehow, the isMinXcodeVersion check was overwritten by the old style lessThan checking. Change-Id: Ife14a139ef63cad0e2d9fdb63da8eca988ac6fc9 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/platform.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/mkspecs/features/platform.prf b/mkspecs/features/platform.prf
index f41a43925..341f7d457 100644
--- a/mkspecs/features/platform.prf
+++ b/mkspecs/features/platform.prf
@@ -39,7 +39,7 @@ defineTest(isPlatformSupported) {
}
} else:osx {
# FIXME: Try to get it back down to 8.2 for building on OS X 10.11
- lessThan(QMAKE_XCODE_VERSION, 8.3.3) {
+ !isMinXcodeVersion(8, 3, 3) {
skipBuild("Using Xcode version $$QMAKE_XCODE_VERSION, but at least version 8.3.3 is required to build Qt WebEngine.")
return(false)
}