diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-05-20 22:50:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-20 22:50:12 +0300 |
commit | ef024583df79d30c0011914603a3212fd139ca3a (patch) | |
tree | c4cc86b679c31f75b6ffdc2d1cb53a880539c9d2 /mesonbuild/mintro.py | |
parent | fb35e6faac2a5efbb8fd0ff6ee5627b144adb184 (diff) | |
parent | 146e97e974fe02f93e3fb20d2a1cb850255f69fc (diff) | |
download | meson-ef024583df79d30c0011914603a3212fd139ca3a.zip meson-ef024583df79d30c0011914603a3212fd139ca3a.tar.gz meson-ef024583df79d30c0011914603a3212fd139ca3a.tar.bz2 |
Merge pull request #5276 from dcbaker/pkg-config-path-invalidate-cache
coredata: add pkg_config_path to depedency cache key
Diffstat (limited to 'mesonbuild/mintro.py')
-rw-r--r-- | mesonbuild/mintro.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index cf55b6f..1d716ef 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -282,7 +282,7 @@ def list_deps_from_source(intr: IntrospectionInterpreter): def list_deps(coredata: cdata.CoreData): result = [] - for d in coredata.deps.values(): + for d in coredata.deps.host.values(): if d.found(): result += [{'name': d.name, 'compile_args': d.get_compile_args(), |