diff options
author | Ross Burton <ross.burton@intel.com> | 2014-05-28 12:56:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-05-29 17:53:40 +0100 |
commit | 385b2d4356c7896ea96a58edb06194a40f9e219d (patch) | |
tree | 8c3d568387b5b947ad83532c2d170ea02dbaa550 /meta/recipes-core/readline | |
parent | 70400ff9bb7555e7295aab63dfe499ef01204092 (diff) | |
download | poky-385b2d4356c7896ea96a58edb06194a40f9e219d.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.
(From OE-Core rev: 8c37d32d6133c6ad2b9142e7a42775e7a979b570)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/readline')
-rw-r--r-- | meta/recipes-core/readline/readline.inc | 2 |
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}" | |||
21 | 21 | ||
22 | inherit autotools texinfo | 22 | inherit autotools texinfo |
23 | 23 | ||
24 | EXTRA_AUTORECONF += "--exclude=autoheader" | ||
25 | |||
24 | LEAD_SONAME = "libreadline.so" | 26 | LEAD_SONAME = "libreadline.so" |
25 | 27 | ||
26 | do_configure_prepend () { | 28 | do_configure_prepend () { |