Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 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 | |