1From 7c1f95995ce9180221bac03b7b1e1696b8a79de7 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---
10 configure.ac | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13diff --git a/configure.ac b/configure.ac
14index 6896c19..2a1fb52 100644
15--- a/configure.ac
16+++ b/configure.ac
17@@ -182,7 +182,7 @@ AC_SUBST([systemdunitdir], [$systemdunitdir])
18 # package as xgettext, and we find them by PATH, so just check for the one.
19 AC_PATH_PROG([XGETTEXT], [xgettext], [no])
20 if test "$XGETTEXT" = "no"; then
21-        AC_MSG_ERROR([Please install gettext tools])
22+        AC_MSG_WARN([Please install gettext tools])
23 fi
24
25 # ssh-add
26