mirror of
https://github.com/thead-yocto-mirror/meta-qt5
synced 2026-09-18 05:01:56 +02:00
* backport patch from 5.4 branch to 5.4.1 release * bump SRCREV in git recipe to use newer revision from 5.4 which already includes this patch Signed-off-by: Stephan Binner <stephan.binner@basyskom.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
30 lines
1.2 KiB
Diff
30 lines
1.2 KiB
Diff
From c2b2432649b15b4d7fcec24dd68501c4613e010a Mon Sep 17 00:00:00 2001
|
|
From: Frieder Schrempf <frieder.schrempf@online.de>
|
|
Date: Mon, 1 Dec 2014 14:34:40 +0000
|
|
Subject: [PATCH 3/3] functions.prf: allow build for linux-oe-g++ platform
|
|
|
|
Upstream-Status: Inappropriate [OE specific]
|
|
|
|
Signed-off-by: Frieder Schrempf <frieder.schrempf@online.de>
|
|
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
|
|
---
|
|
tools/qmake/mkspecs/features/functions.prf | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
|
|
index b46478b..6205bf4 100644
|
|
--- a/tools/qmake/mkspecs/features/functions.prf
|
|
+++ b/tools/qmake/mkspecs/features/functions.prf
|
|
@@ -10,7 +10,7 @@ defineTest(isPlatformSupported) {
|
|
|
|
linux-g++*:!isGCCVersionSupported(): return(false)
|
|
!isPythonVersionSupported(): return(false)
|
|
- linux-g++*|win32-msvc2013|macx-clang: return(true)
|
|
+ linux-g++*|linux-oe-g++*|win32-msvc2013|macx-clang: return(true)
|
|
boot2qt: return(true)
|
|
|
|
skipBuild("Qt WebEngine can currently only be built for Linux (GCC), Windows (MSVC 2013), OS X (XCode 5.1+) or Qt for Device Creation.")
|
|
--
|
|
2.3.1
|
|
|