diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2017-06-23 10:27:07 +0900 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-06-22 21:27:07 -0400 |
commit | 525e9db3b31b5c9d1ed81607ee46fa68d37988cb (patch) | |
tree | ffaddcf4b408627af083efb1ff46f5949032c437 /tmpfiles.d | |
parent | 7cdd9783460b6cec5321ff2c1dd8f7148a82a19d (diff) | |
download | systemd-525e9db3b31b5c9d1ed81607ee46fa68d37988cb.tar.gz |
meson: do not use path separator for target name (#6177)
Fixes #6158.
Diffstat (limited to 'tmpfiles.d')
-rw-r--r-- | tmpfiles.d/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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@'], |