Systemd/src/kernel-install/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

14 lines
403 B
Meson

# -*- mode: meson -*-
install_data('kernel-install',
install_mode : 'rwxr-xr-x',
install_dir : bindir)
install_data('50-depmod.install',
'90-loaderentry.install',
install_mode : 'rwxr-xr-x',
install_dir : kernelinstalldir)
meson.add_install_script('sh', '-c',
mkdir_p.format(sysconfdir + '/kernel/install.d'))