mirror of
https://github.com/systemd/systemd.git
synced 2024-11-05 06:52:22 +03:00
cdc6804b60
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.
27 lines
671 B
Meson
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
|