summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/automake/automake.inc
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-07 18:28:05 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-14 22:30:56 +0000
commit28fa3044d5e978de5801cf9fa02ae596e9ebc833 (patch)
treea5605da733056815c3444e5b1e275c907438bfe1 /meta/recipes-devtools/automake/automake.inc
parentf5e681d8677d7dd528cc316e937ff186ede8ca9a (diff)
downloadpoky-28fa3044d5e978de5801cf9fa02ae596e9ebc833.tar.gz
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/automake/automake.inc')
-rw-r--r--meta/recipes-devtools/automake/automake.inc3
1 files changed, 3 insertions, 0 deletions
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"
10inherit autotools texinfo 10inherit autotools texinfo
11 11
12do_configure() { 12do_configure() {
13 # We can end up patching macros, which would then mean autoreconf
14 # Cheat by saying everything is up to date.
15 touch ${S}/aclocal.m4 ${S}/Makefile.in ${S}/configure
13 oe_runconf 16 oe_runconf
14} 17}
15 18