diff options
author | Ross Burton <ross.burton@intel.com> | 2017-08-08 11:09:01 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-09 09:24:15 +0100 |
commit | cb31b000767aa95ad0a177211271ab9bfc3b2fdb (patch) | |
tree | 9490bb0d906365ba1fe8cf659ff3247f72bd60d2 /meta | |
parent | 6f72bf8a3a0de6451a118d28552971df3d575c56 (diff) | |
download | poky-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>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/diffstat/diffstat_1.61.bb | 9 |
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 | ||
19 | inherit autotools gettext ptest | 19 | inherit autotools gettext ptest |
20 | 20 | ||
21 | LDFLAGS += "${TOOLCHAIN_OPTIONS}" | 21 | EXTRA_AUTORECONF += "--exclude=aclocal" |
22 | 22 | ||
23 | do_configure () { | 23 | LDFLAGS += "${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 | ||
30 | do_install_ptest() { | 25 | do_install_ptest() { |
31 | cp -r ${S}/testing ${D}${PTEST_PATH} | 26 | cp -r ${S}/testing ${D}${PTEST_PATH} |