diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-09-07 08:55:40 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-09-07 16:44:54 -0700 |
commit | 7be157321702a2b10604e31bf31620cd8eaeac72 (patch) | |
tree | 3aece44e59bbecf8ee03b951b71e0b5c9759fd38 /meta-webserver/recipes-webadmin/cockpit/files/0001-Warn-not-error-if-xsltproc-is-not-found.patch | |
parent | 1274e2772ebbf04f6e6af6aec53f5d23ae259874 (diff) | |
download | meta-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.patch | 27 |
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 @@ | |||
1 | From 588bb5cb248aaeaf0fea33084229c99ad1574291 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Wed, 7 Sep 2022 11:12:28 -0700 | ||
4 | Subject: [PATCH] Warn not error if xsltproc is not found | ||
5 | |||
6 | Upstream-Status: Inappropriate [oe-core specific] | ||
7 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
8 | --- | ||
9 | configure.ac | 2 +- | ||
10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
11 | |||
12 | diff --git a/configure.ac b/configure.ac | ||
13 | index 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 | -- | ||
26 | 2.37.3 | ||
27 | |||