[PATCH RESEND v3 7/8] meson: optional_programs should be used only for building libvirt

Pavel Hrdina phrdina at redhat.com
Tue May 25 08:00:46 UTC 2021


Drop code that creates defines with program paths and update the comment
to reflect current usage of optional_programs.

Signed-off-by: Pavel Hrdina <phrdina at redhat.com>
---
 meson.build | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/meson.build b/meson.build
index 8e8d31953d..1c0de2f408 100644
--- a/meson.build
+++ b/meson.build
@@ -819,7 +819,7 @@ foreach item : required_programs_groups
 endforeach
 
 
-# optional programs
+# optional programs used while building libvirt
 
 optional_programs = [
   'augparse',
@@ -830,14 +830,6 @@ optional_programs = [
 foreach name : optional_programs
   prog = find_program(name, required: false, dirs: libvirt_sbin_path)
   varname = name.underscorify()
-  if prog.found()
-    prog_path = prog.path()
-  else
-    prog_path = name
-  endif
-
-  conf.set_quoted(varname.to_upper(), prog_path)
-  conf.set_quoted('@0 at _PATH'.format(varname.to_upper()), prog_path)
   set_variable('@0 at _prog'.format(varname), prog)
 endforeach
 
-- 
2.31.1




More information about the libvir-list mailing list