kumquat-buildroot/package/automake/automake.mk

39 lines
1.1 KiB
Makefile
Raw Normal View History

################################################################################
2003-01-09 03:34:10 +01:00
#
# automake
#
################################################################################
package/automake: bump to version 1.16.5 This bump will avoid to set --with-python_{prefix,exec_prefix} to fix the following build failures with python and libsoc or libgpiod raised since bump of automake to version 1.16.4 in commit fe90272b5128987ee7492fff950660e05324838d and https://git.savannah.gnu.org/cgit/automake.git/commit/?id=ed8daa069a6c8ed34f7856c42402ec46f305e670: /bin/mkdir -p '/home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages' /bin/bash ../../libtool --mode=install /usr/bin/install -c gpiod.la '/home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages' libtool: install: /usr/bin/install -c .libs/gpiod.so /home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot/home/buildroot/autobuild/instance-0/output-1/host/lib/python3.9/site-packages/gpiod.so [...] libgpiod: installs files in /home/buildroot/autobuild/instance-0/output-1/host/arc-buildroot-linux-uclibc/sysroot//home/buildroot/autobuild/instance-0/output-1 Fixes: - http://autobuild.buildroot.org/results/045dc3f737f58d44014a4b717b5a565388e86f63 - http://autobuild.buildroot.org/results/6e7a129b05e7852a4dc8dd35148664ad09610f28 https://git.savannah.gnu.org/cgit/automake.git/tree/NEWS?h=v1.16.5 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2021-10-09 10:18:52 +02:00
AUTOMAKE_VERSION = 1.16.5
AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.xz
AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
AUTOMAKE_LICENSE = GPL-2.0+
AUTOMAKE_LICENSE_FILES = COPYING
AUTOMAKE_CPE_ID_VENDOR = gnu
HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
2003-01-09 03:34:10 +01:00
ACLOCAL_HOST_DIR = $(HOST_DIR)/share/aclocal
define HOST_AUTOMAKE_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 += HOST_AUTOMAKE_GTK_DOC_M4_INSTALL
HOST_AUTOMAKE_POST_INSTALL_HOOKS += HOST_AUTOMAKE_MAKE_ACLOCAL
$(eval $(host-autotools-package))
2003-01-09 03:34:10 +01:00
# variables used by other packages
AUTOMAKE = $(HOST_DIR)/bin/automake
ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
ACLOCAL = $(HOST_DIR)/bin/aclocal
ACLOCAL_PATH = $(ACLOCAL_DIR):$(ACLOCAL_HOST_DIR)
export ACLOCAL_PATH