c699f5ab5a
This reverts commit d36a01273b
, which
causes several build breakage. The squid build breakage has a proposed
fix, but it has some comments from Arnout.
In order to reduce the build failure noise in the autobuilders, let's
revert back to the previous version of automake.
Fixes (or rather avoids):
http://autobuild.buildroot.net/results/2f6ac1663681b702538a2163a02e030880075eda/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
998 B
Makefile
36 lines
998 B
Makefile
################################################################################
|
|
#
|
|
# automake
|
|
#
|
|
################################################################################
|
|
|
|
AUTOMAKE_VERSION = 1.15.1
|
|
AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.xz
|
|
AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
|
|
AUTOMAKE_LICENSE = GPL-2.0+
|
|
AUTOMAKE_LICENSE_FILES = COPYING
|
|
|
|
HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
|
|
|
|
ACLOCAL_HOST_DIR = $(HOST_DIR)/share/aclocal
|
|
|
|
define GTK_DOC_M4_INSTALL
|
|
$(INSTALL) -D -m 0644 package/automake/gtk-doc.m4 \
|
|
$(ACLOCAL_HOST_DIR)/gtk-doc.m4
|
|
endef
|
|
|
|
# ensure staging aclocal dir exists
|
|
define HOST_AUTOMAKE_MAKE_ACLOCAL
|
|
mkdir -p $(ACLOCAL_DIR)
|
|
endef
|
|
|
|
HOST_AUTOMAKE_POST_INSTALL_HOOKS += GTK_DOC_M4_INSTALL
|
|
HOST_AUTOMAKE_POST_INSTALL_HOOKS += HOST_AUTOMAKE_MAKE_ACLOCAL
|
|
|
|
$(eval $(host-autotools-package))
|
|
|
|
# variables used by other packages
|
|
AUTOMAKE = $(HOST_DIR)/bin/automake
|
|
ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
|
|
ACLOCAL = $(HOST_DIR)/bin/aclocal -I $(ACLOCAL_DIR)
|