diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2017-06-23 03:27:07 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-06-23 03:27:07 +0200 |
commit | 525e9db3b31b5c9d1ed81607ee46fa68d37988cb (patch) | |
tree | ffaddcf4b408627af083efb1ff46f5949032c437 | |
parent | meson: install manual and unsafe tests (#6178) (diff) | |
download | systemd-525e9db3b31b5c9d1ed81607ee46fa68d37988cb.tar.xz systemd-525e9db3b31b5c9d1ed81607ee46fa68d37988cb.zip |
meson: do not use path separator for target name (#6177)
Fixes #6158.
-rw-r--r-- | sysusers.d/meson.build | 2 | ||||
-rw-r--r-- | tmpfiles.d/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysusers.d/meson.build b/sysusers.d/meson.build index f4662c0a85..b7c02cf882 100644 --- a/sysusers.d/meson.build +++ b/sysusers.d/meson.build @@ -21,7 +21,7 @@ endif foreach file : m4_files custom_target( - 'sysusers.d/' + file, + 'sysusers.d_' + file, input : file + '.m4', output: file, command : [m4, '-P'] + m4_defines + ['@INPUT@'], diff --git a/tmpfiles.d/meson.build b/tmpfiles.d/meson.build index 7a48389be4..29efe21f9d 100644 --- a/tmpfiles.d/meson.build +++ b/tmpfiles.d/meson.build @@ -31,7 +31,7 @@ foreach pair : m4_files # do nothing elif pair[1] == '' or conf.get(pair[1], false) custom_target( - 'tmpfiles.d/' + pair[0], + 'tmpfiles.d_' + pair[0], input : pair[0] + '.m4', output: pair[0], command : [m4, '-P'] + m4_defines + ['@INPUT@'], |