summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch')
-rw-r--r--meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch b/meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch
new file mode 100644
index 0000000000..b3b0988b12
--- /dev/null
+++ b/meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch
@@ -0,0 +1,27 @@
1From 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