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-devtools | |
parent | 2b15451e3f1b9fb9a7f44317f3f9cd22d8712ff5 (diff) | |
download | openembedded-core-09266d6c91acd8ba4df6e8242aa44d9ba41e9cee.tar.gz openembedded-core-09266d6c91acd8ba4df6e8242aa44d9ba41e9cee.tar.bz2 openembedded-core-09266d6c91acd8ba4df6e8242aa44d9ba41e9cee.zip |
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-devtools')
-rw-r--r-- | meta/recipes-devtools/build-compare/build-compare_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/build-compare/build-compare_git.bb b/meta/recipes-devtools/build-compare/build-compare_git.bb index e432143d91..eb12e40eeb 100644 --- a/meta/recipes-devtools/build-compare/build-compare_git.bb +++ b/meta/recipes-devtools/build-compare/build-compare_git.bb @@ -22,7 +22,7 @@ PV = "git+${SRCPV}" S = "${WORKDIR}/git" -BBCLASSEXTEND += "native nativesdk" +BBCLASSEXTEND = "native nativesdk" do_install() { install -d ${D}/${bindir} |