mirror of
https://invent.kde.org/packaging/yocto-meta-kf5.git
synced 2026-02-28 20:39:39 +01:00
The previous hack of just copying the native tools into the target sysroot has several limitations: - it no longer works with relative RPATHs being used - it fails in the case of kpackage where we need the same tools for host and target
16 lines
387 B
Plaintext
16 lines
387 B
Plaintext
# Class for recipes using kdoctools to build their documentation
|
|
|
|
do_compile_prepend() {
|
|
# meinproc5 needs to find installed service type files
|
|
export XDG_DATA_DIRS=${STAGING_DATADIR}:$XDG_DATA_DIRS
|
|
}
|
|
|
|
DEPENDS += " \
|
|
kdoctools \
|
|
kdoctools-native \
|
|
libxslt-native \
|
|
karchive-native \
|
|
"
|
|
|
|
EXTRA_OECMAKE += " -DKF5_HOST_TOOLING=${STAGING_DIR_NATIVE}/${libdir}/cmake"
|