diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-13 20:17:04 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-23 21:47:28 -0400 |
commit | 9ac47f38151808712f1bdcae8e2eb42a0b53e5ca (patch) | |
tree | dd1854ac638fd4e2f6b6856ab7e0d81545f01d63 /units/meson.build | |
parent | b184e8feb913d08db059b0811d27ec5e564388a7 (diff) |
meson: fix condition for installation of .in units, 99-default.link
The condition to install in_units was calculated, but not used.
99-default.link should be installed uncoditionally.
Diffstat (limited to 'units/meson.build')
-rw-r--r-- | units/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/units/meson.build b/units/meson.build index e49a293ba9..37903e45c0 100644 --- a/units/meson.build +++ b/units/meson.build @@ -255,7 +255,7 @@ foreach tuple : in_units output : file, command : [sed, '/^## /d', '@INPUT@'], capture : true, - install : true, + install : install, install_dir : systemunitdir) if install and tuple.length() > 2 |