summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarko Ratkaj2018-09-10 09:04:36 +0000
committerLuka Perkov2018-09-11 13:00:09 +0000
commit6e80dd58bb6c8c146ed8fd7ed538e96db4e8cc13 (patch)
tree886205cafd14a645dc17f66ba191183519f73369
parenta54f492d0cf1f9bff1dd449961441e789c724995 (diff)
downloadopenwrt-6e80dd58bb6c8c146ed8fd7ed538e96db4e8cc13.tar.gz
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 8d3f5bf763..14425ed124 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