1From 9beadcdfca9198548f06bf18f3f26e1d11542e53 Mon Sep 17 00:00:00 2001 2From: Hongxu Jia <hongxu.jia@windriver.com> 3Date: Tue, 31 Jul 2018 16:53:04 +0800 4Subject: [PATCH 2/4] 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 feafc28..aceccf4 100644 19--- a/configure.ac 20+++ b/configure.ac 21@@ -56,24 +56,6 @@ IT_PROG_INTLTOOL([0.35.0]) 22 23 dnl ****** END **************************************** 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.7.4 48 49