diff options
author | Bernhard Walle <bernhard@bwalle.de> | 2019-02-20 18:34:26 +0100 |
---|---|---|
committer | Bernhard Walle <bernhard@bwalle.de> | 2019-02-20 18:34:26 +0100 |
commit | d295d45b0cbcef7bd6eb91927c3ad4bf3e08b5e7 (patch) | |
tree | fae53c5ac47b7f32437a384787698e4f3f7bd6f4 | |
parent | 9627a041d25e56de06c4eab0ac4af72975b08113 (diff) | |
download | crosstool-ng-d295d45b0cbcef7bd6eb91927c3ad4bf3e08b5e7.tar.gz crosstool-ng-d295d45b0cbcef7bd6eb91927c3ad4bf3e08b5e7.tar.bz2 crosstool-ng-d295d45b0cbcef7bd6eb91927c3ad4bf3e08b5e7.zip |
expat: Build without docbook
This fixes following build error on Debian 9:
configure: error: Your local docbook2man was found to work with SGML rather
than XML. Please install docbook2X and use variable DOCBOOK_TO_MAN to point
configure to command docbook2x-man of docbook2X.
Or use DOCBOOK_TO_MAN="xmlto man --skip-validation" if you have xmlto around.
You can also configure using --without-docbook if you can do without a man
page for xmlwf.
Signed-off-by: Bernhard Walle <bernhard@bwalle.de>
-rw-r--r-- | scripts/build/companion_libs/210-expat.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/build/companion_libs/210-expat.sh b/scripts/build/companion_libs/210-expat.sh index 75a78bf7..d2ca6a02 100644 --- a/scripts/build/companion_libs/210-expat.sh +++ b/scripts/build/companion_libs/210-expat.sh @@ -99,6 +99,7 @@ do_expat_backend() { --host=${host} \ --prefix="${prefix}" \ --enable-static \ + --without-docbook \ "${extra_config[@]}" CT_DoLog EXTRA "Building expat" |