blob: 7f5895ea1218359d8f28bfc3f6a71a79d916c6e3 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 9beadcdfca9198548f06bf18f3f26e1d11542e53 Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Hongxu Jia <hongxu.jia@windriver.com>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08003Date: Tue, 31 Jul 2018 16:53:04 +0800
4Subject: [PATCH 2/4] configure.ac: remove prog test of xmlto and asciidoc
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
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
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018index feafc28..aceccf4 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019--- a/configure.ac
20+++ b/configure.ac
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021@@ -56,24 +56,6 @@ IT_PROG_INTLTOOL([0.35.0])
22
23 dnl ****** END ****************************************
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024
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--
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800472.7.4
Brad Bishopd7bf8c12018-02-25 22:55:05 -050048