From: Richard Genoud Date: Fri, 21 Jun 2013 10:53:30 +0000 (+0200) Subject: libserial: prevent documentation from being build X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2e0aff3b5cf2f83a3ddd31dfd572b29a8288f6be;p=buildroot.git libserial: prevent documentation from being build If docbook2pdf is present on the host, the documentation is built, no matter all the --disable-doc* But forcing ac_cv_prog_DOCBOOK2PDF to no tells configure that docbook2pdf is absent, and thus the documentation is not built. Signed-off-by: Richard Genoud Signed-off-by: Peter Korsgaard --- diff --git a/package/libserial/libserial.mk b/package/libserial/libserial.mk index c5142c5e8f..d2c928bb3e 100644 --- a/package/libserial/libserial.mk +++ b/package/libserial/libserial.mk @@ -10,4 +10,6 @@ LIBSERIAL_INSTALL_STAGING = YES LIBSERIAL_LICENSE = GPLv2+ LIBSERIAL_LICENSE_FILES = COPYING +LIBSERIAL_CONF_ENV = ac_cv_prog_DOCBOOK2PDF=no + $(eval $(autotools-package))