summaryrefslogtreecommitdiffstats
path: root/meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-09-07 08:55:40 -0700
committerKhem Raj <raj.khem@gmail.com>2022-09-07 16:44:54 -0700
commit7be157321702a2b10604e31bf31620cd8eaeac72 (patch)
tree3aece44e59bbecf8ee03b951b71e0b5c9759fd38 /meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch
parent1274e2772ebbf04f6e6af6aec53f5d23ae259874 (diff)
downloadmeta-openembedded-7be157321702a2b10604e31bf31620cd8eaeac72.tar.gz
cockpit: Update to 276
Specify --with-admin-group and no error on xsltproc Signed-off-by: Khem Raj <raj.khem@gmail.com>
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