[PATCH] meson: don't install sysconf files unconditionally

Roman Bogorodskiy bogorodskiy at gmail.com
Wed Aug 26 14:00:26 UTC 2020


There's no need to install sysconf files when init script installation
was not requested, i.e. when configured with init_script=none.

Signed-off-by: Roman Bogorodskiy <bogorodskiy at gmail.com>
---
 src/meson.build | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/src/meson.build b/src/meson.build
index d058cec2e4..5d8deaf548 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -858,13 +858,15 @@ if conf.has('WITH_LIBVIRTD')
   endif
 endif
 
-foreach sysconf : sysconf_files
-  install_data(
-    sysconf['file'],
-    install_dir: sysconfdir / 'sysconfig',
-    rename: [ sysconf['name'] ],
-  )
-endforeach
+if init_script != 'none'
+  foreach sysconf : sysconf_files
+    install_data(
+      sysconf['file'],
+      install_dir: sysconfdir / 'sysconfig',
+      rename: [ sysconf['name'] ],
+    )
+  endforeach
+endif
 
 if conf.has('WITH_DTRACE_PROBES')
   custom_target(
-- 
2.27.0




More information about the libvir-list mailing list