[oe-commits] [openembedded-core] 51/69: libmad: avoid using legacy _thumb overrides

git at git.openembedded.org git at git.openembedded.org
Wed Mar 23 14:26:39 UTC 2016


rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit ef3d68bef8c1df32d40c0be7fa80f18b47b00c1c
Author: Ming Liu <peter.x.liu at external.atlascopco.com>
AuthorDate: Tue Mar 22 15:44:17 2016 +0100

    libmad: avoid using legacy _thumb overrides
    
    _thumb had been dropped from overrides since commit 351443d7:
    [ feature-arm-thumb.inc: drop legacy _thumb and _thumb-interwork over-rides ]
    
    Use bb.utils.contains('TUNE_FEATURES', 'thumb', **, **, d) instead.
    
    [YOCTO #9323]
    
    Signed-off-by: Ming Liu <peter.x.liu at external.atlascopco.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-multimedia/libmad/libmad_0.15.1b.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/libmad/libmad_0.15.1b.bb b/meta/recipes-multimedia/libmad/libmad_0.15.1b.bb
index 9e08b16..15a9d96 100644
--- a/meta/recipes-multimedia/libmad/libmad_0.15.1b.bb
+++ b/meta/recipes-multimedia/libmad/libmad_0.15.1b.bb
@@ -27,7 +27,7 @@ inherit autotools pkgconfig
 
 EXTRA_OECONF = "-enable-speed --enable-shared"
 # The ASO's don't take any account of thumb...
-EXTRA_OECONF_append_thumb = " --disable-aso --enable-fpm=default"
+EXTRA_OECONF_append = "${@bb.utils.contains('TUNE_FEATURES', 'thumb', ' --disable-aso --enable-fpm=default', '', d)}"
 EXTRA_OECONF_append_arm = " --enable-fpm=arm"
 
 do_configure_prepend () {

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list