blob: b3b0988b125e0d09076744b989fc6e38411a7a9c [file] [log] [blame]
Andrew Geissler87f5cff2022-09-30 13:13:31 -05001From 588bb5cb248aaeaf0fea33084229c99ad1574291 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 7 Sep 2022 11:12:28 -0700
4Subject: [PATCH] Warn not error if xsltproc is not found
5
6Upstream-Status: Inappropriate [oe-core specific]
7Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 configure.ac | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/configure.ac b/configure.ac
13index 7659f41..537203e 100644
14--- a/configure.ac
15+++ b/configure.ac
16@@ -177,7 +177,7 @@ AC_SUBST([systemdunitdir], [$systemdunitdir])
17 # package as xgettext, and we find them by PATH, so just check for the one.
18 AC_PATH_PROG([XGETTEXT], [xsltproc], [no])
19 if test "$XGETTEXT" = "no"; then
20- AC_MSG_ERROR([Please install gettext tools])
21+ AC_MSG_WARN([Please install gettext tools])
22 fi
23
24 # ssh-add
25--
262.37.3
27