mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
37efbbd821
The indentation for emacs'es meson-mode is added .dir-locals. All files are reindented automatically, using the lasest meson-mode from git. Indentation should now be fairly consistent.
34 lines
774 B
Meson
34 lines
774 B
Meson
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',
|
|
'timers.target',
|
|
]
|
|
|
|
foreach file : units
|
|
install_data(file,
|
|
install_dir : userunitdir)
|
|
endforeach
|
|
|
|
in_units = [
|
|
'systemd-exit.service',
|
|
]
|
|
|
|
foreach file : in_units
|
|
gen = configure_file(
|
|
input : file + '.in',
|
|
output : file,
|
|
configuration : substs)
|
|
install_data(gen,
|
|
install_dir : userunitdir)
|
|
endforeach
|