From 378e9d2b6d701a1385c4bf72dfc0697c2c37bd57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Wed, 7 Jul 2021 12:39:33 +0200 Subject: [PATCH] meson: install the right README file in modprobe.d We put the "global" README file there. Introduced in d83e90c73cf25a839f5e60f355baa0d38364ff41. --- meson.build | 4 +--- modprobe.d/meson.build | 5 +++++ 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 modprobe.d/meson.build diff --git a/meson.build b/meson.build index 32e5413a62c..738879eb21b 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 00000000000..0d7ce56d27b --- /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)