From: Zbigniew Jędrzejewski-Szmek Date: Fri, 29 Nov 2024 13:15:55 +0000 (+0100) Subject: meson: install README.logs independently of HAVE_SYSV_COMPAT X-Git-Tag: v257~57^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4ebd6d9a108beea33f71e39f5ec69f1e2129a7d4;p=thirdparty%2Fsystemd.git 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. --- diff --git a/docs/var-log/meson.build b/docs/var-log/meson.build index 35f756cafec..0648be68e67 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