]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
meson: install the right README file in modprobe.d
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 7 Jul 2021 10:39:33 +0000 (12:39 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 7 Jul 2021 12:52:05 +0000 (14:52 +0200)
We put the "global" README file there. Introduced
in d83e90c73cf25a839f5e60f355baa0d38364ff41.

meson.build
modprobe.d/meson.build [new file with mode: 0644]

index 32e5413a62ca8f7645ca3155f7817374a246e501..738879eb21bee262400ab1edf18844dda2a6cf63 100644 (file)
@@ -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 (file)
index 0000000..0d7ce56
--- /dev/null
@@ -0,0 +1,5 @@
+# SPDX-License-Identifier: LGPL-2.1-or-later
+
+install_data('README',
+             'systemd.conf',
+             install_dir : modprobedir)