6bf74ce3db
Commit d255b67972
fixed the handling of
the a package local m4/ directory which might be missing. But this
only works if it is the very first argument. But for this package this
is not possible because we already occupy this with the extra include
directory for autoconf-archive. Bring back the hook to create the m4/
directory to fix this.
Fixes:
http://autobuild.buildroot.net/results/dc907421a343b8523b14fc9a846e0caf7abe630c/
Signed-off-by: Michael Walle <michael@walle.cc>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
36 lines
1.3 KiB
Makefile
36 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# sdbusplus
|
|
#
|
|
################################################################################
|
|
|
|
SDBUSPLUS_VERSION = 4212292bcf136d04b38ba5116aa568b0fa312798
|
|
SDBUSPLUS_SITE = $(call github,openbmc,sdbusplus,$(SDBUSPLUS_VERSION))
|
|
SDBUSPLUS_DEPENDENCIES = host-autoconf-archive host-pkgconf systemd
|
|
HOST_SDBUSPLUS_DEPENDENCIES = \
|
|
host-autoconf-archive \
|
|
host-pkgconf \
|
|
$(if $(BR2_PACKAGE_PYTHON3),host-python3,host-python) \
|
|
host-python-inflection \
|
|
host-python-mako \
|
|
host-python-pyyaml
|
|
SDBUSPLUS_CONF_OPTS = --disable-sdbuspp
|
|
HOST_SDBUSPLUS_CONF_OPTS = --disable-libsdbusplus
|
|
SDBUSPLUS_AUTORECONF = YES
|
|
SDBUSPLUS_AUTORECONF_OPTS = --include=$(HOST_DIR)/share/autoconf-archive
|
|
SDBUSPLUS_INSTALL_STAGING = YES
|
|
SDBUSPLUS_LICENSE = Apache-2.0
|
|
SDBUSPLUS_LICENSE_FILES = LICENSE
|
|
|
|
# Autoreconf is missing the m4/ directory, which might actually be missing
|
|
# iff it was the first argument, but unfortunately we are overriding the
|
|
# first include directory above. Thus we need that hook here.
|
|
define SDBUSPLUS_CREATE_M4
|
|
mkdir -p $(@D)/m4
|
|
endef
|
|
SDBUSPLUS_POST_PATCH_HOOKS += SDBUSPLUS_CREATE_M4
|
|
HOST_SDBUSPLUS_POST_PATCH_HOOKS += SDBUSPLUS_CREATE_M4
|
|
|
|
$(eval $(autotools-package))
|
|
$(eval $(host-autotools-package))
|