mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
a6d1760024
When using "capture : true" in custom_target()s the mode of the source file is not preserved when the generated file is not installed and so needs to be tweaked manually. Switch from output capture to creating the target file and copy the permissions from the input file. Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
10 lines
299 B
Meson
10 lines
299 B
Meson
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
custom_target(
|
|
'README',
|
|
input : 'README.in',
|
|
output : 'README',
|
|
command : [meson_render_jinja2, config_h, '@INPUT@', '@OUTPUT@'],
|
|
install : conf.get('HAVE_SYSV_COMPAT') == 1,
|
|
install_dir : sysvinit_path)
|