meta: do not append to BBCLASSEXTEND

Replace some "+=/=+" with "=" when setting BBCLASSEXTEND, they are
redundant and inconsistent with the same setting in other recipes.

(From OE-Core rev: 09266d6c91acd8ba4df6e8242aa44d9ba41e9cee)

Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ming Liu 2017-03-08 15:17:14 +01:00 committed by Richard Purdie
parent c9d0d44e3c
commit 3570501025
7 changed files with 7 additions and 7 deletions

View File

@ -22,7 +22,7 @@ PV = "git+${SRCPV}"
S = "${WORKDIR}/git"
BBCLASSEXTEND += "native nativesdk"
BBCLASSEXTEND = "native nativesdk"
do_install() {
install -d ${D}/${bindir}

View File

@ -27,4 +27,4 @@ FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibSolv.cmake"
FILES_${PN}-tools = "${bindir}/*"
FILES_${PN}ext = "${libdir}/${PN}ext.so.*"
BBCLASSEXTEND =+ "native nativesdk"
BBCLASSEXTEND = "native nativesdk"

View File

@ -38,4 +38,4 @@ do_install () {
fi
}
BBCLASSEXTEND += "native nativesdk"
BBCLASSEXTEND = "native nativesdk"

View File

@ -16,7 +16,7 @@ ALTERNATIVE_PRIORITY = "100"
RRECOMMENDS_${PN} += "ca-certificates"
BBCLASSEXTEND += "nativesdk"
BBCLASSEXTEND = "nativesdk"
PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
PACKAGECONFIG[libuuid] = "--with-libuuid, --without-libuuid,util-linux"

View File

@ -80,4 +80,4 @@ do_install_append_class-native () {
RDEPENDS_${PN} += "openssl"
BBCLASSEXTEND += "native nativesdk"
BBCLASSEXTEND = "native nativesdk"

View File

@ -18,4 +18,4 @@ do_install() {
oe_runmake install
}
BBCLASSEXTEND += "native nativesdk"
BBCLASSEXTEND = "native nativesdk"

View File

@ -26,4 +26,4 @@ do_configure_prepend () {
install -Dm 0644 ${WORKDIR}/acinclude.m4 ${S}/acinclude.m4
}
BBCLASSEXTEND += "native nativesdk"
BBCLASSEXTEND = "native nativesdk"