summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
committerTudor Florea <tudor.florea@enea.com>2014-10-10 03:20:04 +0200
commit1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch)
tree0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch
downloadmeta-openembedded-daisy-140929.tar.gz
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch')
-rw-r--r--meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch b/meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch
new file mode 100644
index 0000000000..3ff68c8dc5
--- /dev/null
+++ b/meta-oe/recipes-qt/libconnman-qt/libconnman-qte/plugin.pro-fix-build-with-custom-target-suffix.patch
@@ -0,0 +1,42 @@
1Upstream-Status: Submitted [https://github.com/nemomobile/libconnman-qt/pull/105]
2
3From 48da520b971af69d22e691a0ef6ff1c3ce901f0d Mon Sep 17 00:00:00 2001
4From: Andreas Oberritter <obi@opendreambox.org>
5Date: Tue, 11 Mar 2014 21:55:37 +0100
6Subject: [PATCH] plugin.pro: fix build with custom target suffix
7
8This went unnoticed because of a previously installed libconnman-qt4.
9
10Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
11---
12 plugin/plugin.pro | 8 ++++++--
13 1 file changed, 6 insertions(+), 2 deletions(-)
14
15diff --git a/plugin/plugin.pro b/plugin/plugin.pro
16index c9534cf..9cdaa63 100644
17--- a/plugin/plugin.pro
18+++ b/plugin/plugin.pro
19@@ -8,14 +8,18 @@ INCLUDEPATH += ../libconnman-qt
20 LIBS += -L../libconnman-qt
21 QT -= gui
22
23+isEmpty(TARGET_SUFFIX) {
24+ TARGET_SUFFIX = qt$$QT_MAJOR_VERSION
25+}
26+
27+LIBS += -l$$qtLibraryTarget(connman-$$TARGET_SUFFIX)
28+
29 equals(QT_MAJOR_VERSION, 4): {
30 QT += declarative
31- LIBS += -lconnman-qt4
32 }
33
34 equals(QT_MAJOR_VERSION, 5): {
35 QT += qml
36- LIBS += -lconnman-qt5
37 OTHER_FILES += plugin.json qmldirs
38 }
39
40--
411.8.3.2
42