diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-03-08 15:17:14 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-10 10:15:46 +0000 |
commit | 09266d6c91acd8ba4df6e8242aa44d9ba41e9cee (patch) | |
tree | 41535fde0a13207e1795668ef897c1d3fdee47ee /meta/recipes-extended | |
parent | 2b15451e3f1b9fb9a7f44317f3f9cd22d8712ff5 (diff) | |
download | openembedded-core-contrib-09266d6c91acd8ba4df6e8242aa44d9ba41e9cee.tar.gz |
meta: do not append to BBCLASSEXTEND
Replace some "+=/=+" with "=" when setting BBCLASSEXTEND, they are
redundant and inconsistent with the same setting in other recipes.
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/libsolv/libsolv_0.6.24.bb | 2 | ||||
-rw-r--r-- | meta/recipes-extended/lzip/lzip_1.18.bb | 2 | ||||
-rw-r--r-- | meta/recipes-extended/wget/wget.inc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-extended/libsolv/libsolv_0.6.24.bb b/meta/recipes-extended/libsolv/libsolv_0.6.24.bb index 6de38b59157..73db5ed2cc7 100644 --- a/meta/recipes-extended/libsolv/libsolv_0.6.24.bb +++ b/meta/recipes-extended/libsolv/libsolv_0.6.24.bb @@ -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" diff --git a/meta/recipes-extended/lzip/lzip_1.18.bb b/meta/recipes-extended/lzip/lzip_1.18.bb index 30c7dd5a6d2..c1dc8ced4ac 100644 --- a/meta/recipes-extended/lzip/lzip_1.18.bb +++ b/meta/recipes-extended/lzip/lzip_1.18.bb @@ -38,4 +38,4 @@ do_install () { fi } -BBCLASSEXTEND += "native nativesdk" +BBCLASSEXTEND = "native nativesdk" diff --git a/meta/recipes-extended/wget/wget.inc b/meta/recipes-extended/wget/wget.inc index 9eb051ff6a1..1299edb720b 100644 --- a/meta/recipes-extended/wget/wget.inc +++ b/meta/recipes-extended/wget/wget.inc @@ -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" |