Systemd/units/user/meson.build
Zbigniew Jędrzejewski-Szmek cdc6804b60 units: drop full paths for utilities in $PATH
This makes things a bit simpler and the build a bit faster, because we don't
have to rewrite files to do the trivial substitution. @rootbindir@ is always in
our internal $PATH that we use for non-absolute paths, so there should be no
functional change.
2020-01-20 16:50:16 +01:00

27 lines
671 B
Meson

# SPDX-License-Identifier: LGPL-2.1+
units = [
'basic.target',
'bluetooth.target',
'default.target',
'exit.target',
'graphical-session-pre.target',
'graphical-session.target',
'paths.target',
'printer.target',
'shutdown.target',
'smartcard.target',
'sockets.target',
'sound.target',
'systemd-exit.service',
'systemd-tmpfiles-clean.service',
'systemd-tmpfiles-clean.timer',
'systemd-tmpfiles-setup.service',
'timers.target',
]
foreach file : units
install_data(file,
install_dir : userunitdir)
endforeach