summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/readline/readline_5.2.bb
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2014-06-03 21:07:09 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-06 09:26:04 +0100
commit00a8a5427010aa0eecc4f892d0bdbb841730c09f (patch)
tree554a64cdda934480b9e0bf9c3825b057bf5f29f2 /meta/recipes-core/readline/readline_5.2.bb
parentea4024a103535764a86af06c9789b14148dc2f8b (diff)
downloadpoky-00a8a5427010aa0eecc4f892d0bdbb841730c09f.tar.gz
readline-5.2: use upstream's aclocal.m4 as acinclude.m4
Instead of shipping a fork of the upstream aclocal.m4, simply rename it to acinclude.m4 at configure time. We don't need the fork now that autoheader is excluded. (From OE-Core rev: 7b98575797c2e8822e6a26d95cb7e727d6efef4b) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/readline/readline_5.2.bb')
-rw-r--r--meta/recipes-core/readline/readline_5.2.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-core/readline/readline_5.2.bb b/meta/recipes-core/readline/readline_5.2.bb
index 05ab26f053..6a37849dbf 100644
--- a/meta/recipes-core/readline/readline_5.2.bb
+++ b/meta/recipes-core/readline/readline_5.2.bb
@@ -28,7 +28,6 @@ SRC_URI = "${GNU_MIRROR}/readline/${BPN}-${PV}.tar.gz;name=archive \
28 ${GNU_MIRROR}/readline/readline-5.2-patches/readline52-013;name=patch13;apply=yes;striplevel=0 \ 28 ${GNU_MIRROR}/readline/readline-5.2-patches/readline52-013;name=patch13;apply=yes;striplevel=0 \
29 ${GNU_MIRROR}/readline/readline-5.2-patches/readline52-014;name=patch14;apply=yes;striplevel=0 \ 29 ${GNU_MIRROR}/readline/readline-5.2-patches/readline52-014;name=patch14;apply=yes;striplevel=0 \
30 file://configure-fix.patch \ 30 file://configure-fix.patch \
31 file://acinclude.m4 \
32 file://fix-redundant-rpath.patch" 31 file://fix-redundant-rpath.patch"
33 32
34SRC_URI[archive.md5sum] = "e39331f32ad14009b9ff49cc10c5e751" 33SRC_URI[archive.md5sum] = "e39331f32ad14009b9ff49cc10c5e751"
@@ -70,7 +69,9 @@ inherit autotools
70LEAD_SONAME = "libreadline.so" 69LEAD_SONAME = "libreadline.so"
71 70
72do_configure_prepend () { 71do_configure_prepend () {
73 install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/ 72 if [ ! -e ${S}/acinclude.m4 ]; then
73 cat ${S}/aclocal.m4 > ${S}/acinclude.m4
74 fi
74} 75}
75 76
76do_install_append () { 77do_install_append () {