Use append syntax for classes

The preferred way for bitbake classes is the append syntax because it
does not interact with the += syntax in derived recipes.
This commit is contained in:
Andreas Cord-Landwehr
2022-05-28 11:52:38 +02:00
parent 1dc3f55dae
commit bcf1d831ea
5 changed files with 9 additions and 9 deletions

View File

@@ -9,11 +9,11 @@ do_compile:prepend() {
export XDG_DATA_DIRS=${STAGING_DATADIR}:$XDG_DATA_DIRS
}
DEPENDS += " \
DEPENDS:append = " \
kdoctools \
kdoctools-native \
libxslt-native \
karchive-native \
"
EXTRA_OECMAKE += " -DKF5_HOST_TOOLING=${STAGING_DIR_NATIVE}/${libdir}/cmake"
EXTRA_OECMAKE:append = " -DKF5_HOST_TOOLING=${STAGING_DIR_NATIVE}/${libdir}/cmake"