diff options
author | Tony Theodore <tonyt@logyst.com> | 2018-09-08 09:00:16 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-09-08 09:00:16 (GMT) |
commit | 842827a489087b77f51554655c0d4f48ddebd5a5 (patch) | |
tree | 0bcc29d4df4495f4118d61c4dab9dbc67f7c0597 | |
parent | b0c7bfb5f3f4650a7e181081c0465cb6fbc5fb0e (diff) | |
download | mxe-842827a489087b77f51554655c0d4f48ddebd5a5.zip mxe-842827a489087b77f51554655c0d4f48ddebd5a5.tar.gz mxe-842827a489087b77f51554655c0d4f48ddebd5a5.tar.bz2 |
expat: disable docbook and use new-style options
-rw-r--r-- | src/expat.mk | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/expat.mk b/src/expat.mk index 6eb24a8..7ba6ffe 100644 --- a/src/expat.mk +++ b/src/expat.mk @@ -18,7 +18,9 @@ define $(PKG)_UPDATE endef define $(PKG)_BUILD - cd '$(1)' && ./configure \ - $(MXE_CONFIGURE_OPTS) - $(MAKE) -C '$(1)' -j '$(JOBS)' install + cd '$(BUILD_DIR)' && $(SOURCE_DIR)/configure \ + $(MXE_CONFIGURE_OPTS) \ + --without-docbook + $(MAKE) -C '$(BUILD_DIR)' -j '$(JOBS)' + $(MAKE) -C '$(BUILD_DIR)' -j 1 install endef |