diff options
author | Christian Brauner <christian.brauner@ubuntu.com> | 2021-11-05 14:29:53 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2021-11-08 12:06:48 +0000 |
commit | a6d1760024d0884efb343e1c739f303619f7c8b9 (patch) | |
tree | c8dbba36a1918327990537b23aefe1b54941fd12 /rules.d | |
parent | bf47f71c1cd36c2b0eb5aeac4d8bdf58c67f2b33 (diff) | |
download | systemd-a6d1760024d0884efb343e1c739f303619f7c8b9.tar.gz |
build: preserve correct mode when generating files via jinja2
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>
Diffstat (limited to 'rules.d')
-rw-r--r-- | rules.d/meson.build | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rules.d/meson.build b/rules.d/meson.build index 05c55a6b41..5cecddb34f 100644 --- a/rules.d/meson.build +++ b/rules.d/meson.build @@ -52,8 +52,7 @@ foreach file : rules_in file, input : file + '.in', output: file, - command : [meson_render_jinja2, config_h, '@INPUT@'], - capture : true, + command : [meson_render_jinja2, config_h, '@INPUT@', '@OUTPUT@'], install : true, install_dir : udevrulesdir) endforeach |