summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@theqtcompany.com>2016-01-08 14:11:15 +0100
committerJoerg Bornemann <joerg.bornemann@theqtcompany.com>2016-01-08 13:22:34 +0000
commit4eaabc29e90219c43981dcd4f2f15a4aad1381ad (patch)
tree4d1f47e1f65ec7cfc72ae005571f37d33ce54afe /src/core
parentd85764a55b6ef8c683b1080cfa5a5a7339b005af (diff)
Fix resources location for developer builds
The pak files must be in a "resources" sub-directory since commit d18b3e7c. Change-Id: Ia5191b1c532cf630be8c2d123261421a39d6a5ee Reviewed-by: Allan Sandfeld Jensen <allan.jensen@theqtcompany.com>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/resources/resources.gyp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/resources/resources.gyp b/src/core/resources/resources.gyp
index 6293cdf3b..143f21f9d 100644
--- a/src/core/resources/resources.gyp
+++ b/src/core/resources/resources.gyp
@@ -77,15 +77,15 @@
['qt_install_data != ""', {
'copies': [
{
- 'destination': '<(qt_install_data)',
+ 'destination': '<(qt_install_data)/resources',
'files': [ '<(SHARED_INTERMEDIATE_DIR)/repack/qtwebengine_resources.pak' ],
},
{
- 'destination': '<(qt_install_data)',
+ 'destination': '<(qt_install_data)/resources',
'files': [ '<(SHARED_INTERMEDIATE_DIR)/repack/qtwebengine_resources_100p.pak' ],
},
{
- 'destination': '<(qt_install_data)',
+ 'destination': '<(qt_install_data)/resources',
'files': [ '<(SHARED_INTERMEDIATE_DIR)/repack/qtwebengine_resources_200p.pak' ],
},
],