diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-06-06 12:02:05 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2014-06-06 13:37:29 -0300 |
commit | 9957ec5d0176912e189cf7e243617ed9c3cde57a (patch) | |
tree | 4b8592e9d1a70097ccf1ce8237b4eed0d675c1f7 | |
parent | ed05b91f137cb229e9ebababf9f72748aece1bf3 (diff) | |
download | meta-qt5-9957ec5d0176912e189cf7e243617ed9c3cde57a.tar.gz |
qt5.inc: Fix packaging of plugins
The qtmultimedia module install the plugins in a sub-directory however
those were not being packaged. This patch fixes following QA error:
ERROR: QA Issue: qtmultimedia: Files/directories were installed but not shipped
/usr/lib/qt5/plugins/video
/usr/lib/qt5/plugins/video/videonode
/usr/lib/qt5/plugins/video/videonode/libimx6vivantevideonode.so
/usr/lib/qt5/plugins/video/videonode/.debug
/usr/lib/qt5/plugins/video/videonode/.debug/libimx6vivantevideonode.so
Reported-by: Lauren Post <lauren.post@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | recipes-qt/qt5/qt5.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qt5.inc b/recipes-qt/qt5/qt5.inc index dfc1c767..bb0bcdca 100644 --- a/recipes-qt/qt5/qt5.inc +++ b/recipes-qt/qt5/qt5.inc | |||
@@ -1,4 +1,4 @@ | |||
1 | # Copyright (C) 2012 O.S. Systems Software LTDA. | 1 | # Copyright (C) 2012, 2014 O.S. Systems Software LTDA. |
2 | # Copyright (C) 2013 Martin Jansa <martin.jansa@gmail.com> | 2 | # Copyright (C) 2013 Martin Jansa <martin.jansa@gmail.com> |
3 | 3 | ||
4 | inherit qmake5 | 4 | inherit qmake5 |
@@ -54,6 +54,8 @@ FILES_${PN}-tools-dbg = " \ | |||
54 | " | 54 | " |
55 | FILES_${PN}-plugins-dbg = " \ | 55 | FILES_${PN}-plugins-dbg = " \ |
56 | ${OE_QMAKE_PATH_PLUGINS}/*/.debug/* \ | 56 | ${OE_QMAKE_PATH_PLUGINS}/*/.debug/* \ |
57 | ${OE_QMAKE_PATH_PLUGINS}/*/*/.debug/* \ | ||
58 | ${OE_QMAKE_PATH_PLUGINS}/*/*/*/.debug/* \ | ||
57 | " | 59 | " |
58 | 60 | ||
59 | # extra packages | 61 | # extra packages |
@@ -98,6 +100,8 @@ FILES_${PN}-tools = " \ | |||
98 | " | 100 | " |
99 | FILES_${PN}-plugins = " \ | 101 | FILES_${PN}-plugins = " \ |
100 | ${OE_QMAKE_PATH_PLUGINS}/*/*${SOLIBSDEV} \ | 102 | ${OE_QMAKE_PATH_PLUGINS}/*/*${SOLIBSDEV} \ |
103 | ${OE_QMAKE_PATH_PLUGINS}/*/*/*${SOLIBSDEV} \ | ||
104 | ${OE_QMAKE_PATH_PLUGINS}/*/*/*/*${SOLIBSDEV} \ | ||
101 | " | 105 | " |
102 | FILES_${PN}-mkspecs = "\ | 106 | FILES_${PN}-mkspecs = "\ |
103 | ${OE_QMAKE_PATH_ARCHDATA}/mkspecs \ | 107 | ${OE_QMAKE_PATH_ARCHDATA}/mkspecs \ |