mirror of
https://github.com/systemd/systemd.git
synced 2024-11-24 02:33:36 +08:00
96b2fb93c5
Let's unify an beautify our remaining copyright statements, with a unicode ©. This means our copyright statements are now always formatted the same way. Yay.
26 lines
624 B
Meson
26 lines
624 B
Meson
# SPDX-License-Identifier: LGPL-2.1+
|
|
#
|
|
# Copyright © 2017 Zbigniew Jędrzejewski-Szmek
|
|
|
|
install_data(
|
|
'50-default.conf',
|
|
install_dir : sysctldir)
|
|
|
|
in_files = []
|
|
|
|
if conf.get('ENABLE_COREDUMP') == 1
|
|
in_files += ['50-coredump.conf']
|
|
endif
|
|
|
|
foreach file : in_files
|
|
gen = configure_file(
|
|
input : file + '.in',
|
|
output : file,
|
|
configuration : substs)
|
|
install_data(gen,
|
|
install_dir : sysctldir)
|
|
endforeach
|
|
|
|
meson.add_install_script('sh', '-c',
|
|
mkdir_p.format(join_paths(sysconfdir, 'sysctl.d')))
|