mlog.debug the meson-set PKG_CONFIG_PATH

This is very useful for debugging!
pull/5263/head
John Ericson 6 years ago committed by John Ericson
parent 5065db86f2
commit 126100b166
  1. 5
      mesonbuild/dependencies/base.py

@ -669,7 +669,10 @@ class PkgConfigDependency(ExternalDependency):
extra_paths = self.env.coredata.get_builtin_option('cross_pkg_config_path')
else:
extra_paths = self.env.coredata.get_builtin_option('pkg_config_path')
env['PKG_CONFIG_PATH'] = ':'.join([p for p in extra_paths])
new_pkg_config_path = ':'.join([p for p in extra_paths])
mlog.debug('PKG_CONFIG_PATH: ' + new_pkg_config_path)
env['PKG_CONFIG_PATH'] = new_pkg_config_path
fenv = frozenset(env.items())
targs = tuple(args)
cache = PkgConfigDependency.pkgbin_cache

Loading…
Cancel
Save