Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 1 | From d8c49e6a15ab28f4ca94e03b2a53ed8df63346cd Mon Sep 17 00:00:00 2001 |
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Wed, 26 Apr 2017 03:49:45 -0400 |
| 4 | Subject: [PATCH 2/3] configure.ac: remove prog test of xmlto and asciidoc |
| 5 | |
| 6 | The prog of xmlto and asciidoc were used to generate documents, |
| 7 | and since the doc module has already been disabled, so we should |
| 8 | remove the prog test. |
| 9 | |
| 10 | Upstream-Status: Inappropriate workaround |
| 11 | |
| 12 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
| 13 | --- |
| 14 | configure.ac | 18 ------------------ |
| 15 | 1 file changed, 18 deletions(-) |
| 16 | |
| 17 | diff --git a/configure.ac b/configure.ac |
| 18 | index ccefe50..ed48c88 100644 |
| 19 | --- a/configure.ac |
| 20 | +++ b/configure.ac |
| 21 | @@ -68,24 +68,6 @@ if test -z "$PYTHON3"; then |
| 22 | exit 1 |
| 23 | fi |
| 24 | |
| 25 | -AC_PATH_PROG([ASCIIDOC], [asciidoc], [no]) |
| 26 | -[if test "$ASCIIDOC" = "no"] |
| 27 | -[then] |
| 28 | - [echo "The asciidoc program was not found in the search path. Please ensure"] |
| 29 | - [echo "that it is installed and its directory is included in the search path."] |
| 30 | - [echo "Then run configure again before attempting to build libreport."] |
| 31 | - [exit 1] |
| 32 | -[fi] |
| 33 | - |
| 34 | -AC_PATH_PROG([XMLTO], [xmlto], [no]) |
| 35 | -[if test "$XMLTO" = "no"] |
| 36 | -[then] |
| 37 | - [echo "The xmlto program was not found in the search path. Please ensure"] |
| 38 | - [echo "that it is installed and its directory is included in the search path."] |
| 39 | - [echo "Then run configure again before attempting to build libreport."] |
| 40 | - [exit 1] |
| 41 | -[fi] |
| 42 | - |
| 43 | AC_ARG_WITH(bugzilla, |
| 44 | AS_HELP_STRING([--with-bugzilla],[use Bugzilla plugin (default is YES)]), |
| 45 | LIBREPORT_PARSE_WITH([bugzilla])) |
| 46 | -- |
| 47 | 2.8.1 |
| 48 | |