aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5
diff options
context:
space:
mode:
authorMikko Gronoff <mikko.gronoff@qt.io>2020-01-15 13:53:47 +0200
committerMikko Gronoff <mikko.gronoff@qt.io>2020-01-16 07:28:43 +0000
commitc017b5dc4c3d3e59f64c3beb7316335f6d341ee4 (patch)
tree7175d4873d316f18c35d48e19c96762bc3a4e811 /recipes-qt/qt5
parentf29e5bf1d15372a21e3e79a23afbc2be9fbaa004 (diff)
qttranslations: temporarily re-apply qmlviewer & qtquick1 files removal
These were cleaned from the recipe in previous merge commit, but cause build error QA Issue: qttranslations: Files/directories were installed but not shipped in any package: /usr/share/translations/qtquick1_uk.qm /usr/share/translations/qmlviewer_bg.qm ... ...etc. due presently missing branch merge to 5.15 in qttranslations module. This commit will be reverted once the 5.15 branch is up to date. Change-Id: I0b90963fd25b98196838d63be99f0caa26be4b58 Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
Diffstat (limited to 'recipes-qt/qt5')
-rw-r--r--recipes-qt/qt5/qttranslations_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qttranslations_git.bb b/recipes-qt/qt5/qttranslations_git.bb
index 4a291e49..6c2e0f43 100644
--- a/recipes-qt/qt5/qttranslations_git.bb
+++ b/recipes-qt/qt5/qttranslations_git.bb
@@ -10,7 +10,7 @@ DEPENDS += "qtbase qttools-native"
do_install_append() {
# remove qtquick1 translations - qtquick1 is gone
- for transfile in `find ${D}/${OE_QMAKE_PATH_TRANSLATIONS} -name qt_*.qm ! -name qt_help_*.qm`; do
+ for transfile in `find ${D}/${OE_QMAKE_PATH_TRANSLATIONS} -name qmlviewer_*.qm -o -name qtquick1_*.qm -o -name qt_*.qm ! -name qt_help_*.qm`; do
rm $transfile
done
}