summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Ratkaj <marko.ratkaj@sartura.hr>2018-09-10 11:04:36 +0200
committerLuka Perkov <luka.perkov@sartura.hr>2018-09-11 15:00:09 +0200
commit6e80dd58bb6c8c146ed8fd7ed538e96db4e8cc13 (patch)
tree886205cafd14a645dc17f66ba191183519f73369
parenta54f492d0cf1f9bff1dd449961441e789c724995 (diff)
downloadmtk-20170518-6e80dd58bb6c8c146ed8fd7ed538e96db4e8cc13.zip
mtk-20170518-6e80dd58bb6c8c146ed8fd7ed538e96db4e8cc13.tar.gz
mtk-20170518-6e80dd58bb6c8c146ed8fd7ed538e96db4e8cc13.tar.bz2
tools/expat: fix docbook2man error on some systems
On some systems (Gentoo) configure stage fails because of docbook2man working with SGML rather than with XML. We don't need xmlwf man pages so we disable this. Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
-rw-r--r--tools/expat/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/expat/Makefile b/tools/expat/Makefile
index 8d3f5bf..14425ed 100644
--- a/tools/expat/Makefile
+++ b/tools/expat/Makefile
@@ -19,6 +19,9 @@ HOST_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/host-build.mk
+HOST_CONFIGURE_ARGS += \
+ --without-docbook
+
define Host/Install
$(MAKE) -C $(HOST_BUILD_DIR) install
endef