34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From 2a66d0407ed5f5f3b48449c2c9197e0b77693d03 Mon Sep 17 00:00:00 2001
|
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
Date: Thu, 2 Nov 2023 14:20:11 +0900
|
|
Subject: [PATCH] meson: /etc/systemd/network is also used by udevd
|
|
|
|
(cherry picked from commit 6256c65aad2a719ac9054961561bb26e497208ce)
|
|
|
|
Resolves: RHEL-111610
|
|
---
|
|
network/meson.build | 9 +++++----
|
|
1 file changed, 5 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/network/meson.build b/network/meson.build
|
|
index 4c6de20515..499ea61086 100644
|
|
--- a/network/meson.build
|
|
+++ b/network/meson.build
|
|
@@ -12,11 +12,12 @@ if conf.get('ENABLE_NETWORKD') == 1
|
|
'80-wifi-station.network.example',
|
|
install_dir : networkdir)
|
|
|
|
- if install_sysconfdir
|
|
- meson.add_install_script('sh', '-c',
|
|
- mkdir_p.format(sysconfdir / 'systemd/network'))
|
|
- endif
|
|
endif
|
|
|
|
install_data('99-default.link',
|
|
install_dir : networkdir)
|
|
+
|
|
+if install_sysconfdir
|
|
+ meson.add_install_script('sh', '-c',
|
|
+ mkdir_p.format(sysconfdir / 'systemd/network'))
|
|
+endif
|