diff options
author | Mikko Gronoff <mikko.gronoff@qt.io> | 2016-10-17 15:52:27 +0300 |
---|---|---|
committer | Mikko Gronoff <mikko.gronoff@qt.io> | 2016-10-20 09:23:35 +0000 |
commit | e6dc2b8580f7657eb1fa250283ee017d94e15104 (patch) | |
tree | 71744e74a416cb8896d190662f47d253a0d84ce8 /recipes-qt/qt5 | |
parent | 415e9f875b9c153c62883b5177bf836e722e8800 (diff) | |
download | meta-boot2qt-e6dc2b8580f7657eb1fa250283ee017d94e15104.tar.gz |
qt5: remove obsolete file 0001-Allow-a-tools-only-build.patch
Patch has been available from meta-qt5 layer for a long time. This file
is identical to meta-qt5 patch, thus removed from meta-boot2qt layer.
Change-Id: Ib7e82d5d22719927271aadc9604470834afb563a
Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
Diffstat (limited to 'recipes-qt/qt5')
-rw-r--r-- | recipes-qt/qt5/qt3d/0001-Allow-a-tools-only-build.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/recipes-qt/qt5/qt3d/0001-Allow-a-tools-only-build.patch b/recipes-qt/qt5/qt3d/0001-Allow-a-tools-only-build.patch deleted file mode 100644 index c9d2223..0000000 --- a/recipes-qt/qt5/qt3d/0001-Allow-a-tools-only-build.patch +++ /dev/null | |||
@@ -1,31 +0,0 @@ | |||
1 | From 778d0c4515bae5bdeb650fb3e6b3e32a73722b51 Mon Sep 17 00:00:00 2001 | ||
2 | From: Samuli Piippo <samuli.piippo@theqtcompany.com> | ||
3 | Date: Wed, 10 Feb 2016 09:02:09 +0200 | ||
4 | Subject: [PATCH] Allow a tools-only build | ||
5 | |||
6 | --- | ||
7 | qt3d.pro | 7 ++++++- | ||
8 | 1 file changed, 6 insertions(+), 1 deletion(-) | ||
9 | |||
10 | diff --git a/qt3d.pro b/qt3d.pro | ||
11 | index a26e76d..263e3c4 100644 | ||
12 | --- a/qt3d.pro | ||
13 | +++ b/qt3d.pro | ||
14 | @@ -1,4 +1,4 @@ | ||
15 | -requires(contains(QT_CONFIG, opengl)) | ||
16 | +!tools-only:requires(contains(QT_CONFIG, opengl)) | ||
17 | |||
18 | load(configure) | ||
19 | qtCompileTest(assimp) | ||
20 | @@ -17,3 +17,8 @@ load(qt_parts) | ||
21 | |||
22 | OTHER_FILES += \ | ||
23 | sync.profile | ||
24 | + | ||
25 | +tools-only { | ||
26 | + sub_tools.depends -= sub_src | ||
27 | + SUBDIRS = sub_tools | ||
28 | +} | ||
29 | -- | ||
30 | 1.9.1 | ||
31 | |||