446d9f5102
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
fe90272b51
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>
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# automake
|
|
#
|
|
################################################################################
|
|
|
|
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
|
|
|
|
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
|
|
ACLOCAL_PATH = $(ACLOCAL_DIR):$(ACLOCAL_HOST_DIR)
|
|
export ACLOCAL_PATH
|