From 3344194b9503ebc8f6b21cbfb39c89624facc0e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Br=C3=BCning?= Date: Fri, 12 Oct 2018 12:07:21 +0200 Subject: [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 --- mkspecs/features/platform.prf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mkspecs') 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) } -- cgit v1.2.3