summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2019-01-10 16:18:05 +0200
committerSamuli Piippo <samuli.piippo@qt.io>2019-01-17 11:04:15 +0000
commit713574b3e4932bb74bf8b4231d1fad67a086fbff (patch)
tree0bc40d567cc7599f740cbb2e47af92a5d8ff1600
parent41276b11dcb9ab1dedeaed37bcafcc4be6580028 (diff)
downloadmeta-qt5-713574b3e4932bb74bf8b4231d1fad67a086fbff.tar.gz
qt5: patch build paths from installed files
All 3rdparty libs and includes are now resolved into full filepaths, which means build paths to the yocto build environment are in module's prl, pri, pc and cmake files. Move existing patching from qtbase to the bbclass so that it's applied to all modules. -L paths are no longer included in the .pc files, remove unneeded patching for those. Task-number: QTBUG-72903 Change-Id: Iae5d150593aef153c46aaf8a3ba22fbafcc9b818 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@gmx.de> Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
-rw-r--r--classes/qmake5_base.bbclass19
-rw-r--r--recipes-qt/qt5/qtbase_git.bb5
2 files changed, 14 insertions, 10 deletions
diff --git a/classes/qmake5_base.bbclass b/classes/qmake5_base.bbclass
index 48da05e8..20ff33d4 100644
--- a/classes/qmake5_base.bbclass
+++ b/classes/qmake5_base.bbclass
@@ -240,9 +240,18 @@ qmake5_base_do_install() {
240 qmake5_base_fix_install ${STAGING_DIR_HOST} 240 qmake5_base_fix_install ${STAGING_DIR_HOST}
241 qmake5_base_fix_install ${STAGING_DIR_NATIVE} 241 qmake5_base_fix_install ${STAGING_DIR_NATIVE}
242 242
243 if ls ${D}${libdir}/pkgconfig/*.pc >/dev/null 2>/dev/null; then 243 # Replace host paths with qmake built-in properties
244 sed -i ${D}${libdir}/pkgconfig/*.pc \ 244 find ${D} \( -name *.pri -or -name *.prl \) -exec \
245 -e "s@-L${STAGING_LIBDIR}@-L\${libdir}@g" \ 245 sed -i -e 's|${STAGING_DIR_NATIVE}|$$[QT_HOST_PREFIX/get]|g' \
246 -e "s@${STAGING_DIR_TARGET}@@g" 246 -e 's|${STAGING_DIR_HOST}|$$[QT_SYSROOT]|g' {} \;
247 fi 247
248 # Replace host paths with pkg-config built-in variable
249 find ${D} -name *.pc -exec \
250 sed -i -e 's|prefix=${STAGING_DIR_HOST}|prefix=|g' \
251 -e 's|${STAGING_DIR_HOST}|${pc_sysrootdir}|g' {} \;
252
253 # Replace resolved lib path with the lib name
254 find ${D} -name *.cmake -exec \
255 sed -i -e 's@/[^;]*/lib\([^;]*\)\.\(so\|a\)@\1@g' {} \;
256
248} 257}
diff --git a/recipes-qt/qt5/qtbase_git.bb b/recipes-qt/qt5/qtbase_git.bb
index da12f669..4915076a 100644
--- a/recipes-qt/qt5/qtbase_git.bb
+++ b/recipes-qt/qt5/qtbase_git.bb
@@ -219,11 +219,6 @@ do_install_append() {
219 # Avoid qmake error "Cannot read [...]/usr/lib/qt5/mkspecs/oe-device-extra.pri: No such file or directory" 219 # Avoid qmake error "Cannot read [...]/usr/lib/qt5/mkspecs/oe-device-extra.pri: No such file or directory"
220 touch ${D}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/oe-device-extra.pri 220 touch ${D}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/oe-device-extra.pri
221 221
222 # Replace host paths with qmake built-in properties
223 sed -i -e 's|${STAGING_DIR_NATIVE}|$$[QT_HOST_PREFIX/get]|g' \
224 -e 's|${STAGING_DIR_HOST}|$$[QT_SYSROOT]|g' \
225 ${D}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/*.pri
226
227 # Update the mkspecs to include the default OE toolchain config for the target 222 # Update the mkspecs to include the default OE toolchain config for the target
228 conf=${D}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/${XPLATFORM}/qmake.conf 223 conf=${D}/${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/${XPLATFORM}/qmake.conf
229 224