systemd/network/meson.build
Zbigniew Jędrzejewski-Szmek 94e75a5409 meson: create dirs and touch /usr
This is the equivalent of $(INSTALL_DIRS) and install-touch-usr-hook.
I did not bother to create the directories into which we install files,
since they will be created anyway.

v2:
- remove bashism
2017-04-23 21:47:27 -04:00

13 lines
388 B
Meson

# -*- mode: meson -*-
if conf.get('ENABLE_NETWORKD', 0) == 1
install_data('80-container-host0.network',
'80-container-ve.network',
'80-container-vz.network',
'99-default.link',
install_dir : networkdir)
meson.add_install_script('sh', '-c',
mkdir_p.format(sysconfdir + '/systemd/network'))
endif