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 14:50:11 +0000 |
commit | 3570501025cea849936e472e993d08cd69095613 (patch) | |
tree | 2607d2cea8111aab6414d6aeba7865c25738f3e4 /meta/recipes-support | |
parent | c9d0d44e3c078f65f57bdae692c573ad71ec8a7e (diff) | |
download | poky-3570501025cea849936e472e993d08cd69095613.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.
(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>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/ca-certificates/ca-certificates_20161130.bb | 2 | ||||
-rw-r--r-- | meta/recipes-support/lz4/lz4.bb | 2 | ||||
-rw-r--r-- | meta/recipes-support/lzop/lzop_1.03.bb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-support/ca-certificates/ca-certificates_20161130.bb b/meta/recipes-support/ca-certificates/ca-certificates_20161130.bb index e47bad11b7..42088b9899 100644 --- a/meta/recipes-support/ca-certificates/ca-certificates_20161130.bb +++ b/meta/recipes-support/ca-certificates/ca-certificates_20161130.bb | |||
@@ -80,4 +80,4 @@ do_install_append_class-native () { | |||
80 | 80 | ||
81 | RDEPENDS_${PN} += "openssl" | 81 | RDEPENDS_${PN} += "openssl" |
82 | 82 | ||
83 | BBCLASSEXTEND += "native nativesdk" | 83 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-support/lz4/lz4.bb b/meta/recipes-support/lz4/lz4.bb index 18e56d04c6..03c5a7ab39 100644 --- a/meta/recipes-support/lz4/lz4.bb +++ b/meta/recipes-support/lz4/lz4.bb | |||
@@ -18,4 +18,4 @@ do_install() { | |||
18 | oe_runmake install | 18 | oe_runmake install |
19 | } | 19 | } |
20 | 20 | ||
21 | BBCLASSEXTEND += "native nativesdk" | 21 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta/recipes-support/lzop/lzop_1.03.bb b/meta/recipes-support/lzop/lzop_1.03.bb index 649e7243ee..6f09002f55 100644 --- a/meta/recipes-support/lzop/lzop_1.03.bb +++ b/meta/recipes-support/lzop/lzop_1.03.bb | |||
@@ -26,4 +26,4 @@ do_configure_prepend () { | |||
26 | install -Dm 0644 ${WORKDIR}/acinclude.m4 ${S}/acinclude.m4 | 26 | install -Dm 0644 ${WORKDIR}/acinclude.m4 ${S}/acinclude.m4 |
27 | } | 27 | } |
28 | 28 | ||
29 | BBCLASSEXTEND += "native nativesdk" | 29 | BBCLASSEXTEND = "native nativesdk" |