From: Peter Korsgaard Date: Wed, 4 Sep 2013 10:36:09 +0000 (+0200) Subject: kmod: disable manpages for host-kmod X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=24058f10a70812de695f6bf8be3f66f0abcc179c;p=buildroot.git kmod: disable manpages for host-kmod The manpages are not installed to HOST_DIR anyway, and it errors out if xsltproc isn't available on the host. --- diff --git a/package/kmod/kmod.mk b/package/kmod/kmod.mk index 169fca3a5c..a1ad7d6b53 100644 --- a/package/kmod/kmod.mk +++ b/package/kmod/kmod.mk @@ -23,6 +23,9 @@ KMOD_LICENSE_FILES = libkmod/COPYING # https://git.kernel.org/cgit/utils/kernel/kmod/kmod.git/commit/?id=b7016153ec8 KMOD_CONF_OPT = --disable-static --enable-shared +# manpages not installed to host and needs xsltproc +HOST_KMOD_CONF_OPT = --disable-manpages + ifneq ($(BR2_HAVE_DOCUMENTATION),y) KMOD_CONF_OPT += --disable-manpages endif