diff options
author | Graham Gower <graham.gower@gmail.com> | 2009-08-26 16:48:36 +0930 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2009-09-09 11:45:33 +0100 |
commit | 5503c215650838e0e1649421ae540b669991f1b2 (patch) | |
tree | a54ccfb0d543843e809430c13e228453e9a16dd1 /recipes/enca/enca_1.9.bb | |
parent | 30c1e63389bb65008f8fec09ff5e12b19609c3e8 (diff) |
enca_1.9.bb: remove unused configure test which is bound to fail.
Enca's configure will fail on everything not arm or ix86.
Signed-off-by: Graham Gower <graham.gower@gmail.com>
Diffstat (limited to 'recipes/enca/enca_1.9.bb')
-rw-r--r-- | recipes/enca/enca_1.9.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/recipes/enca/enca_1.9.bb b/recipes/enca/enca_1.9.bb index 548a824523..dbffe1e97b 100644 --- a/recipes/enca/enca_1.9.bb +++ b/recipes/enca/enca_1.9.bb @@ -3,7 +3,7 @@ SECTION = "libs" PRIORITY = "optional" LICENSE = "GPLv2" HOMEPAGE = "http://trific.ath.cx/software/enca/" -PR = "r3" +PR = "r4" SRC_URI = "http://www.sourcefiles.org/Networking/Tools/Miscellanenous/enca-${PV}.tar.bz2 \ file://configure-hack.patch;patch=1 \ @@ -15,6 +15,11 @@ inherit autotools EXTRA_OECONF="--with-libiconv-prefix=${STAGING_DIR_HOST}${layout_exec_prefix}" +do_configure_prepend() { + # remove failing test which checks for something that isn't even used + sed -i -e '/ye_FUNC_SCANF_MODIF_SIZE_T/d' configure.ac +} + do_configure_append() { sed -i s:-I/usr/include::g Makefile sed -i s:-I/usr/include::g */Makefile |