summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2019-01-30 12:00:39 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2019-02-08 22:20:26 +0000
commitbbc8f1bf0ce7814686e39b366cfd9e92d152ad8c (patch)
tree49b10189de3c370ac172bd6a00eddfe58980cd7f
parentbe74def89d83f03df33a9257e4d86a66e14b5c58 (diff)
downloadmeta-qt5-bbc8f1bf0ce7814686e39b366cfd9e92d152ad8c.tar.gz
qwt-qt5: Fix multilib install
| ERROR: qwt-qt5-6.1.3-r0 do_package: QA Issue: qwt-qt5: Files/directories were installed but not shipped in any package: | /usr/lib/libqwt.so.6 | /usr/lib/libqwt.so.6.1 | /usr/lib/libqwt.so | /usr/lib/libqwt.so.6.1.3 | /usr/lib/pkgconfig | /usr/lib/pkgconfig/Qt5Qwt6.pc | Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
-rw-r--r--recipes-qt/qwt/qwt-qt5_6.1.3.bb6
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes-qt/qwt/qwt-qt5_6.1.3.bb b/recipes-qt/qwt/qwt-qt5_6.1.3.bb
index 49f4f9e5..cb934025 100644
--- a/recipes-qt/qwt/qwt-qt5_6.1.3.bb
+++ b/recipes-qt/qwt/qwt-qt5_6.1.3.bb
@@ -25,7 +25,11 @@ EXTRA_QMAKEVARS_PRE += " \
25" 25"
26 26
27do_configure_prepend() { 27do_configure_prepend() {
28 sed -i 's:/usr/local/qwt-$$QWT_VERSION:${prefix}:' ${S}/*.pri 28 sed -i \
29 -e 's:/usr/local/qwt-$$QWT_VERSION:${prefix}:' \
30 -e 's:^QWT_INSTALL_LIBS.*:QWT_INSTALL_LIBS = ${libdir}:' \
31 ${S}/*.pri
32 export QWT_INSTALL_LIBS=${libdir}
29} 33}
30 34
31do_install_append() { 35do_install_append() {