summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-08-08 11:09:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-09 09:24:15 +0100
commitcb31b000767aa95ad0a177211271ab9bfc3b2fdb (patch)
tree9490bb0d906365ba1fe8cf659ff3247f72bd60d2
parent6f72bf8a3a0de6451a118d28552971df3d575c56 (diff)
downloadpoky-cb31b000767aa95ad0a177211271ab9bfc3b2fdb.tar.gz
diffstat: exclude aclocal
Instead of moving aclocal.m4 to acinclude.m4 in a custom do_configure, simply tell autoreconf not to run aclocal. (From OE-Core rev: 5cc53ea9347035f96a721ab057a338eded5c5c67) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/diffstat/diffstat_1.61.bb9
1 files changed, 2 insertions, 7 deletions
diff --git a/meta/recipes-devtools/diffstat/diffstat_1.61.bb b/meta/recipes-devtools/diffstat/diffstat_1.61.bb
index 583b387e95..f8b7b06cf2 100644
--- a/meta/recipes-devtools/diffstat/diffstat_1.61.bb
+++ b/meta/recipes-devtools/diffstat/diffstat_1.61.bb
@@ -18,14 +18,9 @@ S = "${WORKDIR}/diffstat-${PV}"
18 18
19inherit autotools gettext ptest 19inherit autotools gettext ptest
20 20
21LDFLAGS += "${TOOLCHAIN_OPTIONS}" 21EXTRA_AUTORECONF += "--exclude=aclocal"
22 22
23do_configure () { 23LDFLAGS += "${TOOLCHAIN_OPTIONS}"
24 if [ ! -e ${S}/acinclude.m4 ]; then
25 mv ${S}/aclocal.m4 ${S}/acinclude.m4
26 fi
27 autotools_do_configure
28}
29 24
30do_install_ptest() { 25do_install_ptest() {
31 cp -r ${S}/testing ${D}${PTEST_PATH} 26 cp -r ${S}/testing ${D}${PTEST_PATH}