diff options
author | Mikko Gronoff <mikko.gronoff@qt.io> | 2020-01-15 13:53:47 +0200 |
---|---|---|
committer | Mikko Gronoff <mikko.gronoff@qt.io> | 2020-01-16 07:28:43 +0000 |
commit | c017b5dc4c3d3e59f64c3beb7316335f6d341ee4 (patch) | |
tree | 7175d4873d316f18c35d48e19c96762bc3a4e811 | |
parent | f29e5bf1d15372a21e3e79a23afbc2be9fbaa004 (diff) | |
download | meta-qt5-c017b5dc4c3d3e59f64c3beb7316335f6d341ee4.tar.gz |
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>
-rw-r--r-- | recipes-qt/qt5/qttranslations_git.bb | 2 |
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" | |||
10 | 10 | ||
11 | do_install_append() { | 11 | do_install_append() { |
12 | # remove qtquick1 translations - qtquick1 is gone | 12 | # remove qtquick1 translations - qtquick1 is gone |
13 | for transfile in `find ${D}/${OE_QMAKE_PATH_TRANSLATIONS} -name qt_*.qm ! -name qt_help_*.qm`; do | 13 | 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 |
14 | rm $transfile | 14 | rm $transfile |
15 | done | 15 | done |
16 | } | 16 | } |