From 47756135272876748d6bb469dddc032571697679 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Tue, 14 Sep 2021 10:41:02 +0200 Subject: [PATCH] meson: Don't set $PROG_PATH macros MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Now, that there is no user of $PROG_PATH macros the meson script can be changed so that it doesn't set those macros. It's redundant as $PROG macro contains the same value. Signed-off-by: Michal Privoznik Reviewed-by: Ján Tomko --- meson.build | 2 -- 1 file changed, 2 deletions(-) diff --git a/meson.build b/meson.build index 9d493ccd9e..77ee60977d 100644 --- a/meson.build +++ b/meson.build @@ -802,7 +802,6 @@ foreach name : required_programs prog = find_program(name, dirs: libvirt_sbin_path) varname = name.underscorify() conf.set_quoted(varname.to_upper(), prog.path()) - conf.set_quoted('@0@_PATH'.format(varname.to_upper()), prog.path()) set_variable('@0@_prog'.format(varname), prog) endforeach @@ -848,7 +847,6 @@ foreach name : optional_programs endif conf.set_quoted(varname.to_upper(), prog_path) - conf.set_quoted('@0@_PATH'.format(varname.to_upper()), prog_path) set_variable('@0@_prog'.format(varname), prog) endforeach -- 2.47.2