diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2011-11-07 14:38:34 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-11-07 17:20:36 +0100 |
commit | a94753610158a368216407a1a21039fe0c21bcc6 (patch) | |
tree | 0a89fc4f0103a6f28d32c514357f3c13e7d16eac | |
parent | 37694a06939c8052670aaa831c78563fe99704d2 (diff) | |
download | meta-openembedded-a94753610158a368216407a1a21039fe0c21bcc6.tar.gz |
libav: disable yasm for x86 and x86-64 builds, because we don't have recipe for that
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r-- | meta-oe/recipes-multimedia/libav/libav.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-multimedia/libav/libav.inc b/meta-oe/recipes-multimedia/libav/libav.inc index a5609997c..9d3f3b6dc 100644 --- a/meta-oe/recipes-multimedia/libav/libav.inc +++ b/meta-oe/recipes-multimedia/libav/libav.inc | |||
@@ -54,6 +54,10 @@ EXTRA_OECONF = " \ | |||
54 | ${EXTRA_FFCONF} \ | 54 | ${EXTRA_FFCONF} \ |
55 | " | 55 | " |
56 | 56 | ||
57 | #| yasm not found, use --disable-yasm for a crippled build | ||
58 | EXTRA_OECONF_append_x86-64 = " --disable-yasm" | ||
59 | EXTRA_OECONF_append_x86 = " --disable-yasm" | ||
60 | |||
57 | do_configure() { | 61 | do_configure() { |
58 | # We don't have TARGET_PREFIX-pkgconfig | 62 | # We don't have TARGET_PREFIX-pkgconfig |
59 | sed -i '/pkg_config_default="${cross_prefix}${pkg_config_default}"/d' ${S}/configure | 63 | sed -i '/pkg_config_default="${cross_prefix}${pkg_config_default}"/d' ${S}/configure |