diff options
Diffstat (limited to 'meta-oe/recipes-multimedia/libopus/libopus_1.1.2.bb')
-rw-r--r-- | meta-oe/recipes-multimedia/libopus/libopus_1.1.2.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-multimedia/libopus/libopus_1.1.2.bb b/meta-oe/recipes-multimedia/libopus/libopus_1.1.2.bb index 9d9a6342e..e5882e8b9 100644 --- a/meta-oe/recipes-multimedia/libopus/libopus_1.1.2.bb +++ b/meta-oe/recipes-multimedia/libopus/libopus_1.1.2.bb | |||
@@ -27,11 +27,11 @@ EXTRA_OECONF = "--with-NE10-includes=${STAGING_DIR_TARGET}${includedir} \ | |||
27 | " | 27 | " |
28 | 28 | ||
29 | python () { | 29 | python () { |
30 | if d.getVar('TARGET_FPU', True) in [ 'soft' ]: | 30 | if d.getVar('TARGET_FPU') in [ 'soft' ]: |
31 | d.appendVar('PACKAGECONFIG', ' fixed-point') | 31 | d.appendVar('PACKAGECONFIG', ' fixed-point') |
32 | 32 | ||
33 | # Ne10 is only available for armv7 and aarch64 | 33 | # Ne10 is only available for armv7 and aarch64 |
34 | if any((t.startswith('armv7') or t.startswith('aarch64')) for t in d.getVar('TUNE_FEATURES', True).split()): | 34 | if any((t.startswith('armv7') or t.startswith('aarch64')) for t in d.getVar('TUNE_FEATURES').split()): |
35 | d.appendVar('DEPENDS', ' ne10') | 35 | d.appendVar('DEPENDS', ' ne10') |
36 | } | 36 | } |
37 | 37 | ||