Patrick Williams | ddad1a1 | 2017-02-23 20:36:32 -0600 | [diff] [blame] | 1 | configure.ac: never generate the docs even if a2x is found as xmllint will fail finding custom dtd files |
| 2 | |
| 3 | Upstream-Status: Inappropriate [embedded specific] |
| 4 | |
| 5 | Signed-off-by: Derek Straka <derek@asterius.io> |
| 6 | --- git/configure.ac.orig 2016-08-15 09:53:46.787003658 -0400 |
| 7 | +++ git/configure.ac 2016-08-15 09:53:51.698972432 -0400 |
| 8 | @@ -37,7 +37,7 @@ |
| 9 | ]) |
| 10 | |
| 11 | AC_CHECK_PROG([ASCIIDOC], [a2x], [a2x]) |
| 12 | -AM_CONDITIONAL([HAVE_DOCTOOLS], [test "x$ASCIIDOC" != "x"]) |
| 13 | +AM_CONDITIONAL([HAVE_DOCTOOLS], [false]) |
| 14 | AS_IF([test "x$ASCIIDOC" = "x"], |
| 15 | [AC_MSG_WARN([asciidoc not installed, man pages will not be created])]) |
| 16 | |