From 28fa3044d5e978de5801cf9fa02ae596e9ebc833 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 7 Dec 2015 18:28:05 +0000 Subject: automake: Remove delays in configure scripts using automake By default automake puts "sleep 1" into the start of configure scripts which adds pointless delays to them. Rather than do this, lets just assume our systems are sane. Since this means our patches touch m4 files, we need to stop automake running autoreconf so we tweak the do_configure to avoid this. (From OE-Core rev: 25eca6793cd4ad7af7e23669ed4f47d075ec696d) Signed-off-by: Richard Purdie --- meta/recipes-devtools/automake/automake.inc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/recipes-devtools/automake/automake.inc') diff --git a/meta/recipes-devtools/automake/automake.inc b/meta/recipes-devtools/automake/automake.inc index a1debd8d53..4f9b5f7740 100644 --- a/meta/recipes-devtools/automake/automake.inc +++ b/meta/recipes-devtools/automake/automake.inc @@ -10,6 +10,9 @@ SRC_URI = "${GNU_MIRROR}/automake/automake-${PV}.tar.gz" inherit autotools texinfo do_configure() { + # We can end up patching macros, which would then mean autoreconf + # Cheat by saying everything is up to date. + touch ${S}/aclocal.m4 ${S}/Makefile.in ${S}/configure oe_runconf } -- cgit v1.2.3-54-g00ecf