[libvirt PATCH 06/26] meson: Use get_pkgconfig_variable('cflags')

Andrea Bolognani abologna at redhat.com
Tue Jun 1 08:37:37 UTC 2021


Meson offers a native convenience method that can be used to
fetch pkg-config variables from a dependency, so we can use
that instead of calling pkg-config manually.

Signed-off-by: Andrea Bolognani <abologna at redhat.com>
---
 meson.build | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/meson.build b/meson.build
index 9c494faa5c..7f6756abca 100644
--- a/meson.build
+++ b/meson.build
@@ -1309,9 +1309,7 @@ if yajl_dep.found()
   #
   # [1] https://github.com/Homebrew/homebrew-core/pull/74516
   if host_machine.system() != 'linux'
-    pkg_config_prog = find_program('pkg-config')
-    rc = run_command(pkg_config_prog, '--cflags', 'yajl', check: true)
-    cflags = rc.stdout().strip()
+    cflags = yajl_dep.get_pkgconfig_variable('cflags')
     if cflags.contains('include/yajl')
       rc = run_command(
         'python3', '-c',
-- 
2.31.1




More information about the libvir-list mailing list