]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: install README.logs independently of HAVE_SYSV_COMPAT 35414/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 29 Nov 2024 13:15:55 +0000 (14:15 +0100)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 29 Nov 2024 13:18:15 +0000 (14:18 +0100)
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

index 35f756cafec846cb4c239be41c1d9ce566a053e1..0648be68e67016bcb058afffbdd11a9cde09ce99 100644 (file)
@@ -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