summaryrefslogtreecommitdiff
path: root/src/kernel-install
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-09 23:55:05 -0400
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-04-23 21:47:27 -0400
commit94e75a54097b32252ef86e9253a288db7529f1ea (patch)
treecddc53ebc24428981faa4df1c395621846bee80c /src/kernel-install
parent2d9f0c68780b5ea6be92fa247a61688b1e73d28d (diff)
downloadsystemd-94e75a54097b32252ef86e9253a288db7529f1ea.tar.gz
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
Diffstat (limited to 'src/kernel-install')
-rw-r--r--src/kernel-install/meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/kernel-install/meson.build b/src/kernel-install/meson.build
index 517cd69c0e..4ecea20f89 100644
--- a/src/kernel-install/meson.build
+++ b/src/kernel-install/meson.build
@@ -8,3 +8,6 @@ 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'))