mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 06:25:37 +03:00
6ed5ef9819
Not everybody has those dirs in the filesystem (and they don't need to). When creating an installation package using $DESTDIR, it is easy enough to remove or ignore those directories, but if installing into a real root, it is ugly to create and remove them. Let's add an option so people can skip it if they want. Inspired by #12930.
12 lines
300 B
Meson
12 lines
300 B
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
file = configure_file(
|
|
input : 'README.in',
|
|
output : 'README',
|
|
configuration : substs)
|
|
|
|
if conf.get('HAVE_SYSV_COMPAT') == 1 and get_option('create-log-dirs')
|
|
install_data(file,
|
|
install_dir : varlogdir)
|
|
endif
|