mirror of
https://git.yoctoproject.org/poky
synced 2026-02-10 02:33:02 +01:00
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>
22 lines
734 B
PHP
22 lines
734 B
PHP
SUMMARY = "A GNU tool for automatically generating Makefiles"
|
|
DESCRIPTION = "Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding \
|
|
Standards. Automake requires the use of Autoconf."
|
|
LICENSE = "GPLv2"
|
|
HOMEPAGE = "http://www.gnu.org/software/automake/"
|
|
SECTION = "devel"
|
|
|
|
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
|
|
}
|
|
|
|
export AUTOMAKE = "${@bb.utils.which('automake', d.getVar('PATH', True))}"
|
|
|
|
FILES_${PN} += "${datadir}/automake* ${datadir}/aclocal*"
|