123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- From 9beadcdfca9198548f06bf18f3f26e1d11542e53 Mon Sep 17 00:00:00 2001
- From: Hongxu Jia <hongxu.jia@windriver.com>
- Date: Tue, 31 Jul 2018 16:53:04 +0800
- Subject: [PATCH 2/4] configure.ac: remove prog test of xmlto and asciidoc
- The prog of xmlto and asciidoc were used to generate documents,
- and since the doc module has already been disabled, so we should
- remove the prog test.
- Upstream-Status: Inappropriate [workaround]
- Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
- ---
- configure.ac | 18 ------------------
- 1 file changed, 18 deletions(-)
- diff --git a/configure.ac b/configure.ac
- index feafc28..aceccf4 100644
- --- a/configure.ac
- +++ b/configure.ac
- @@ -56,24 +56,6 @@ IT_PROG_INTLTOOL([0.35.0])
-
- dnl ****** END ****************************************
-
- -AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
- -[if test "$ASCIIDOC" = "no"]
- -[then]
- - [echo "The asciidoc program was not found in the search path. Please ensure"]
- - [echo "that it is installed and its directory is included in the search path."]
- - [echo "Then run configure again before attempting to build libreport."]
- - [exit 1]
- -[fi]
- -
- -AC_PATH_PROG([XMLTO], [xmlto], [no])
- -[if test "$XMLTO" = "no"]
- -[then]
- - [echo "The xmlto program was not found in the search path. Please ensure"]
- - [echo "that it is installed and its directory is included in the search path."]
- - [echo "Then run configure again before attempting to build libreport."]
- - [exit 1]
- -[fi]
- -
- AC_ARG_WITH(bugzilla,
- AS_HELP_STRING([--with-bugzilla],[use Bugzilla plugin (default is YES)]),
- LIBREPORT_PARSE_WITH([bugzilla]))
- --
- 2.7.4
|