61f677cb06
When packages using gtk-doc are autoreconfigured, aclocal complains because it cannot find the macros defined in gtk-doc.m4. We could compile the gtk-doc package for the host, but it depends on gnome-doc-utils, which depends on libxml2, libxslt, and other packages as well. Since we don't care about the documentation, all is needed is in fact the gtk-doc.m4, so that the configure script can be generated, and we can use the --disable-gtk-doc to not generate the documentation. To solve this, we include a gtk-doc.m4 file in package/automake/, and it gets installed in $(STAGING_DIR)/usr/share/aclocal/ during the installation of the host automake (used for autoreconfiguration of packages). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
31 lines
935 B
Makefile
31 lines
935 B
Makefile
#############################################################
|
|
#
|
|
# automake
|
|
#
|
|
#############################################################
|
|
AUTOMAKE_VERSION = 1.10
|
|
AUTOMAKE_SOURCE = automake-$(AUTOMAKE_VERSION).tar.bz2
|
|
AUTOMAKE_SITE = $(BR2_GNU_MIRROR)/automake
|
|
|
|
ifeq ($(BR2_ENABLE_DEBUG),y) # install-exec doesn't install aclocal stuff
|
|
AUTOMAKE_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
|
endif
|
|
|
|
AUTOMAKE_DEPENDENCIES = autoconf microperl
|
|
|
|
HOST_AUTOMAKE_DEPENDENCIES = host-autoconf
|
|
|
|
define GTK_DOC_M4_INSTALL
|
|
$(INSTALL) -m 0644 package/automake/gtk-doc.m4 $(STAGING_DIR)/usr/share/aclocal/
|
|
endef
|
|
|
|
HOST_AUTOMAKE_POST_INSTALL_HOOKS += GTK_DOC_M4_INSTALL
|
|
|
|
$(eval $(call AUTOTARGETS,package,automake))
|
|
$(eval $(call AUTOTARGETS,package,automake,host))
|
|
|
|
# variables used by other packages
|
|
AUTOMAKE:=$(HOST_DIR)/usr/bin/automake
|
|
ACLOCAL_DIR = $(STAGING_DIR)/usr/share/aclocal
|
|
ACLOCAL = $(HOST_DIR)/usr/bin/aclocal -I $(ACLOCAL_DIR)
|