summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2014-03-06 15:53:31 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-10 18:16:37 +0100
commit30d45090c0f5681f6d06a3803bcba4d54bdcea6c (patch)
tree755b84e538f2de92c01e82ee654d76fb4ca903f1
parent1b37339e890f4ae23a1e33d76e84d3d32fd9ec01 (diff)
Fix deployment of qtwebengine_locales with make install
The install_locales target silently fails when running make install with the message "install: omitting directory." Add all the translations to the files variable and set the path to $$[QT_INSTALL_TRANSLATIONS]/qtwebengine_locales. Change-Id: I375077982d9b3e2154cf90ae13142bb42a07e38d Reviewed-by: Pierre Rossi <pierre.rossi@gmail.com>
-rw-r--r--src/core/core.pro4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/core.pro b/src/core/core.pro
index 31a9c17f7..39a7763f5 100644
--- a/src/core/core.pro
+++ b/src/core/core.pro
@@ -25,9 +25,9 @@ SUBDIRS += core_gyp_generator \
core_module
REPACK_DIR = $$OUT_PWD/$$getConfigDir()/gen/repack
-locales.files = $$REPACK_DIR/qtwebengine_locales
+locales.files = "$$REPACK_DIR/qtwebengine_locales/*"
locales.CONFIG += no_check_exist
-locales.path = $$[QT_INSTALL_TRANSLATIONS]
+locales.path = $$[QT_INSTALL_TRANSLATIONS]/qtwebengine_locales
resources.files = $$REPACK_DIR/qtwebengine_resources.pak
resources.CONFIG += no_check_exist
resources.path = $$[QT_INSTALL_DATA]