aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2014-05-28 12:56:24 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-29 10:32:29 +0100
commit8c37d32d6133c6ad2b9142e7a42775e7a979b570 (patch)
treedafd35867a580ace9d90faf2f998133400eb89b0
parentbc0d0c71eca48be05490209261b88b1f92bcf847 (diff)
downloadopenembedded-core-contrib-8c37d32d6133c6ad2b9142e7a42775e7a979b570.tar.gz
readline: exclude autoheader from autoreconf
readline ships a hand-maintained config.h, instead of letting autoheader generate one from configure.ac. The required arguments to AC_DEFINE are not in configure.ac so autoheader will produce warnings and the generated code will not behave as expected. Solve this by excluding autoheader from autoreconf, so the upstream config.h.in is used. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/readline/readline.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-core/readline/readline.inc b/meta/recipes-core/readline/readline.inc
index c33e91a550..2c5ad002f7 100644
--- a/meta/recipes-core/readline/readline.inc
+++ b/meta/recipes-core/readline/readline.inc
@@ -21,6 +21,8 @@ S = "${WORKDIR}/${BPN}-${PV}"
inherit autotools texinfo
+EXTRA_AUTORECONF += "--exclude=autoheader"
+
LEAD_SONAME = "libreadline.so"
do_configure_prepend () {