diff options
author | Ming Liu <peter.x.liu@external.atlascopco.com> | 2017-03-13 16:48:58 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-03-16 23:34:32 +0100 |
commit | ebd31fd8d519d3e2d26dd14e72d36300f433cfa0 (patch) | |
tree | ba98498c66b8cb45251cf631ba9e7b9aaa3dbfb5 /meta-oe | |
parent | 4b4a62ec0760873b96b738751bf9492aa2efb922 (diff) | |
download | meta-openembedded-ebd31fd8d519d3e2d26dd14e72d36300f433cfa0.tar.gz |
meta: do not prepend/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: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe')
9 files changed, 9 insertions, 9 deletions
diff --git a/meta-oe/recipes-connectivity/ser2net/ser2net_2.9.1.bb b/meta-oe/recipes-connectivity/ser2net/ser2net_2.9.1.bb index 8fe6a6f9c..288c586a5 100644 --- a/meta-oe/recipes-connectivity/ser2net/ser2net_2.9.1.bb +++ b/meta-oe/recipes-connectivity/ser2net/ser2net_2.9.1.bb | |||
@@ -12,4 +12,4 @@ SRC_URI[sha256sum] = "fdee1e69903cf409bdc6f32403a566cbc6006aa9e2a4d6f8f12b90dfd5 | |||
12 | 12 | ||
13 | inherit autotools pkgconfig | 13 | inherit autotools pkgconfig |
14 | 14 | ||
15 | BBCLASSEXTEND += "native nativesdk" | 15 | BBCLASSEXTEND = "native nativesdk" |
diff --git a/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb b/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb index f39a82ccc..34fddcbda 100644 --- a/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb +++ b/meta-oe/recipes-devtools/android-tools/android-tools_5.1.1.r37.bb | |||
@@ -165,4 +165,4 @@ FILES_${PN}-fstools = "\ | |||
165 | ${bindir}/mkuserimg \ | 165 | ${bindir}/mkuserimg \ |
166 | " | 166 | " |
167 | 167 | ||
168 | BBCLASSEXTEND += "native" | 168 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-devtools/json-spirit/json-spirit_4.08.bb b/meta-oe/recipes-devtools/json-spirit/json-spirit_4.08.bb index dff6cc161..53bbf7eee 100644 --- a/meta-oe/recipes-devtools/json-spirit/json-spirit_4.08.bb +++ b/meta-oe/recipes-devtools/json-spirit/json-spirit_4.08.bb | |||
@@ -21,4 +21,4 @@ inherit cmake | |||
21 | 21 | ||
22 | FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibJsonSpirit.cmake" | 22 | FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibJsonSpirit.cmake" |
23 | 23 | ||
24 | BBCLASSEXTEND += "nativesdk" | 24 | BBCLASSEXTEND = "nativesdk" |
diff --git a/meta-oe/recipes-devtools/librcf/librcf_2.2.0.0.bb b/meta-oe/recipes-devtools/librcf/librcf_2.2.0.0.bb index 3105f65c3..b8d15835b 100644 --- a/meta-oe/recipes-devtools/librcf/librcf_2.2.0.0.bb +++ b/meta-oe/recipes-devtools/librcf/librcf_2.2.0.0.bb | |||
@@ -45,4 +45,4 @@ PACKAGES =+ "${@bb.utils.contains('PACKAGECONFIG', 'demos', '${PN}-demos', '', d | |||
45 | FILES_${PN}-demos = "${bindir}/*" | 45 | FILES_${PN}-demos = "${bindir}/*" |
46 | FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibRcf.cmake" | 46 | FILES_${PN}-dev += "${datadir}/cmake/Modules/FindLibRcf.cmake" |
47 | 47 | ||
48 | BBCLASSEXTEND += "nativesdk" | 48 | BBCLASSEXTEND = "nativesdk" |
diff --git a/meta-oe/recipes-devtools/log4cplus/log4cplus_1.2.0.bb b/meta-oe/recipes-devtools/log4cplus/log4cplus_1.2.0.bb index c2f5ec0dc..31ab9a69c 100644 --- a/meta-oe/recipes-devtools/log4cplus/log4cplus_1.2.0.bb +++ b/meta-oe/recipes-devtools/log4cplus/log4cplus_1.2.0.bb | |||
@@ -12,4 +12,4 @@ SRC_URI[sha256sum] = "ad5ec3b62f2f0bdc7f06fa398bde61091fd2493e91059e17315b519742 | |||
12 | 12 | ||
13 | inherit autotools pkgconfig | 13 | inherit autotools pkgconfig |
14 | 14 | ||
15 | BBCLASSEXTEND += "native" | 15 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb b/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb index fdd51db21..67ffbc67c 100644 --- a/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb +++ b/meta-oe/recipes-extended/p7zip/p7zip_16.02.bb | |||
@@ -36,4 +36,4 @@ EOF | |||
36 | chmod 0755 ${D}${bindir}/7z | 36 | chmod 0755 ${D}${bindir}/7z |
37 | } | 37 | } |
38 | 38 | ||
39 | BBCLASSEXTEND += "native" | 39 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-support/libssh2/libssh2_1.7.0.bb b/meta-oe/recipes-support/libssh2/libssh2_1.7.0.bb index 155d3d484..c62dab133 100644 --- a/meta-oe/recipes-support/libssh2/libssh2_1.7.0.bb +++ b/meta-oe/recipes-support/libssh2/libssh2_1.7.0.bb | |||
@@ -23,4 +23,4 @@ PACKAGECONFIG ??= "openssl" | |||
23 | PACKAGECONFIG[openssl] = "--with-openssl --with-libssl-prefix=${STAGING_LIBDIR},--without-openssl,openssl" | 23 | PACKAGECONFIG[openssl] = "--with-openssl --with-libssl-prefix=${STAGING_LIBDIR},--without-openssl,openssl" |
24 | PACKAGECONFIG[gcrypt] = "--with-libgcrypt --with-libgcrypt-prefix=${STAGING_EXECPREFIXDIR},--without-libgcrypt,libgcrypt" | 24 | PACKAGECONFIG[gcrypt] = "--with-libgcrypt --with-libgcrypt-prefix=${STAGING_EXECPREFIXDIR},--without-libgcrypt,libgcrypt" |
25 | 25 | ||
26 | BBCLASSEXTEND += "native" | 26 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-support/libtinyxml/libtinyxml_2.6.2.bb b/meta-oe/recipes-support/libtinyxml/libtinyxml_2.6.2.bb index 4460be207..138df9f30 100644 --- a/meta-oe/recipes-support/libtinyxml/libtinyxml_2.6.2.bb +++ b/meta-oe/recipes-support/libtinyxml/libtinyxml_2.6.2.bb | |||
@@ -42,4 +42,4 @@ do_install() { | |||
42 | install -m 0644 ${S}/tinyxml.h ${D}${includedir} | 42 | install -m 0644 ${S}/tinyxml.h ${D}${includedir} |
43 | } | 43 | } |
44 | 44 | ||
45 | BBCLASSEXTEND += "native" | 45 | BBCLASSEXTEND = "native" |
diff --git a/meta-oe/recipes-support/lzip/lzip_1.16.bb b/meta-oe/recipes-support/lzip/lzip_1.16.bb index af0b6ae8e..a5d99625a 100644 --- a/meta-oe/recipes-support/lzip/lzip_1.16.bb +++ b/meta-oe/recipes-support/lzip/lzip_1.16.bb | |||
@@ -38,4 +38,4 @@ do_install () { | |||
38 | fi | 38 | fi |
39 | } | 39 | } |
40 | 40 | ||
41 | BBCLASSEXTEND += "native nativesdk" | 41 | BBCLASSEXTEND = "native nativesdk" |