From 4ebd6d9a108beea33f71e39f5ec69f1e2129a7d4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Fri, 29 Nov 2024 14:15:55 +0100 Subject: [PATCH] meson: install README.logs independently of HAVE_SYSV_COMPAT That file provides compatiblity (or more precisely the explanation for the lack of compatibility) with syslog daemons. Those are used quite independently of sysvinit. For example, RHEL uses rsyslog with systemd. We create /var/log/journal, so it's no biggie to also provide /var/log/README with the explanation. Let's keep it, since it might help some confused users, even when compat with sysvinit is gone. --- docs/var-log/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/var-log/meson.build b/docs/var-log/meson.build index 35f756cafe..0648be68e6 100644 --- a/docs/var-log/meson.build +++ b/docs/var-log/meson.build @@ -1,6 +1,6 @@ # SPDX-License-Identifier: LGPL-2.1-or-later -if conf.get('HAVE_SYSV_COMPAT') == 1 and get_option('create-log-dirs') +if get_option('create-log-dirs') install_data('README.logs', install_dir : docdir) endif -- 2.25.1