Install init system configs only when relevant

This commit is contained in:
Robert Hensing 2024-12-03 16:51:01 +01:00
parent 038ab46d7a
commit 63c0f0dcd2

View File

@ -2,5 +2,10 @@ subdir('bash')
subdir('fish')
subdir('zsh')
subdir('launchd')
subdir('systemd')
if host_machine.system() == 'linux'
subdir('systemd')
endif
if host_machine.system() == 'darwin'
subdir('launchd')
endif