summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-07-07 12:39:33 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2021-07-07 14:52:05 +0200
commit378e9d2b6d701a1385c4bf72dfc0697c2c37bd57 (patch)
tree7faa25c7bef0cd78c8d9f2ff89e3b77afe39da89
parent8def4b347a7b3f6e469b49aa175879b2e551cee9 (diff)
downloadsystemd-378e9d2b6d701a1385c4bf72dfc0697c2c37bd57.tar.gz
meson: install the right README file in modprobe.d
We put the "global" README file there. Introduced in d83e90c73cf25a839f5e60f355baa0d38364ff41.
-rw-r--r--meson.build4
-rw-r--r--modprobe.d/meson.build5
2 files changed, 6 insertions, 3 deletions
diff --git a/meson.build b/meson.build
index 32e5413a62..738879eb21 100644
--- a/meson.build
+++ b/meson.build
@@ -3503,6 +3503,7 @@ run_target(
############################################################
+subdir('modprobe.d')
subdir('sysctl.d')
subdir('sysusers.d')
subdir('tmpfiles.d')
@@ -3523,9 +3524,6 @@ if install_sysconfdir
install_data('xorg/50-systemd-user.sh',
install_dir : xinitrcdir)
endif
-install_data('README',
- 'modprobe.d/systemd.conf',
- install_dir : modprobedir)
install_data('LICENSE.GPL2',
'LICENSE.LGPL2.1',
'NEWS',
diff --git a/modprobe.d/meson.build b/modprobe.d/meson.build
new file mode 100644
index 0000000000..0d7ce56d27
--- /dev/null
+++ b/modprobe.d/meson.build
@@ -0,0 +1,5 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+
+install_data('README',
+ 'systemd.conf',
+ install_dir : modprobedir)