blob: 7cc3cbe0fb2b1c02f0eee935e291ecf1fb828063 [file] [log] [blame]
Patrick Williams92b42cb2022-09-03 06:53:57 -05001configure.in: drop the test of xmllint and xsltproc
2
3The test is unnecessary, the xmllint and xsltproc were explicitly
4added to RDEPENDS.
5
6Upstream-Status: Inappropriate
7Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
8---
9 configure.in | 4 ++--
10 1 file changed, 2 insertions(+), 2 deletions(-)
11
12diff --git a/configure.ac b/configure.ac
13--- a/configure.ac
14+++ b/configure.ac
15@@ -42,10 +42,10 @@ AC_ARG_VAR([LOCALE], [Name and path of the `locale' program.])
16 AC_PATH_PROG([LOCALE], [locale], [locale])
17
18 AC_ARG_VAR([XMLLINT], [Name and path of the `xmllint' program.])
19-AC_PATH_PROG([XMLLINT], [xmllint], [xmllint])
20+dnl AC_PATH_PROG([XMLLINT], [xmllint], [xmllint])
21
22 AC_ARG_VAR([XSLTPROC], [Name and path of the `xsltproc' program.])
23-AC_PATH_PROG([XSLTPROC], [xsltproc], [xsltproc])
24+dnl AC_PATH_PROG([XSLTPROC], [xsltproc], [xsltproc])
25
26 dnl
27 dnl toolchains
28--
291.8.1.2
30