blob: 146510e3cf0bc30e3358eafe9a50788f211d52c5 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From d8c49e6a15ab28f4ca94e03b2a53ed8df63346cd Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Wed, 26 Apr 2017 03:49:45 -0400
4Subject: [PATCH 2/3] configure.ac: remove prog test of xmlto and asciidoc
5
6The prog of xmlto and asciidoc were used to generate documents,
7and since the doc module has already been disabled, so we should
8remove the prog test.
9
10Upstream-Status: Inappropriate workaround
11
12Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
13---
14 configure.ac | 18 ------------------
15 1 file changed, 18 deletions(-)
16
17diff --git a/configure.ac b/configure.ac
18index 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--
472.8.1
48