diff options
author | Samuli Piippo <samuli.piippo@qt.io> | 2017-03-24 12:27:37 +0200 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@qt.io> | 2017-03-27 07:14:48 +0000 |
commit | f108145d26bc9a5d9b3164137117df8b84f65a98 (patch) | |
tree | cf839b45a63d97612d8e715b31ad1f950e73874a | |
parent | 54c5f1552b15b2a3aa1ee19ad843b4b69951cbd2 (diff) | |
download | meta-qt5-f108145d26bc9a5d9b3164137117df8b84f65a98.tar.gz |
qtwebengine: make WORKDIR shorter
Ninja may fail when the build directory is too long:
ninja: error: WriteFile(__third_party_WebKit_Source_bindings_modules_\
interfaces_info_individual_modules__home_qt_work_build_build-nitrogen\
6x_tmp_work_cortexa9hf-neon-mx6qdl-poky-linux-gnueabi_qtwebengine_5.9\
.0_gitAUTOINC_29afdb0a34_049134677a-r0_build_src_toolchain_target__ru\
le.rsp): Unable to create file. File name too long
Change-Id: Ib5c1a357328dbae6312f6e9b0a40bbaaa2d27dea
Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
Reviewed-by: Samuli Piippo <samuli.piippo@qt.io>
-rw-r--r-- | recipes-qt/qt5/qtwebengine_git.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtwebengine_git.bb b/recipes-qt/qt5/qtwebengine_git.bb index 78a78f8b..13777517 100644 --- a/recipes-qt/qt5/qtwebengine_git.bb +++ b/recipes-qt/qt5/qtwebengine_git.bb | |||
@@ -122,3 +122,6 @@ SRCREV_FORMAT = "qtwebengine_chromium" | |||
122 | 122 | ||
123 | # WARNING: qtwebengine-5.5.99+5.6.0-rc+gitAUTOINC+3f02c25de4_779a2388fc-r0 do_package_qa: QA Issue: ELF binary '/OE/build/oe-core/tmp-glibc/work/i586-oe-linux/qtwebengine/5.5.99+5.6.0-rc+gitAUTOINC+3f02c25de4_779a2388fc-r0/packages-split/qtwebengine/usr/lib/libQt5WebEngineCore.so.5.6.0' has relocations in .text [textrel] | 123 | # WARNING: qtwebengine-5.5.99+5.6.0-rc+gitAUTOINC+3f02c25de4_779a2388fc-r0 do_package_qa: QA Issue: ELF binary '/OE/build/oe-core/tmp-glibc/work/i586-oe-linux/qtwebengine/5.5.99+5.6.0-rc+gitAUTOINC+3f02c25de4_779a2388fc-r0/packages-split/qtwebengine/usr/lib/libQt5WebEngineCore.so.5.6.0' has relocations in .text [textrel] |
124 | INSANE_SKIP_${PN} += "textrel" | 124 | INSANE_SKIP_${PN} += "textrel" |
125 | |||
126 | # Ninja may fail when path is too long, try to make it a bit shorter | ||
127 | WORKDIR = "${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}/${PN}/${QT_MODULE_BRANCH}" | ||