From cb9344cb8d32641aa2db11709db0ce89a5525c8c Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sat, 3 Jun 2017 22:22:31 +0300 Subject: [PATCH] Revert "gnome: Use --pkg to pass pkg-config cflags to g-ir-scanner" This reverts commit 3a2e333f004828e5390ce96344cb338be11e70b0. --- mesonbuild/modules/gnome.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 0c4b67a0e..b8092b2be 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -332,10 +332,7 @@ class GnomeModule(ExtensionModule): source.held_object.get_subdir())]) # This should be any dependency other than an internal one. elif isinstance(dep, Dependency): - if isinstance(dep, PkgConfigDependency) and use_gir_args: - cflags.update(["--pkg=%s" % dep.get_name()]) - else: - cflags.update(dep.get_compile_args()) + cflags.update(dep.get_compile_args()) for lib in dep.get_link_args(): if (os.path.isabs(lib) and # For PkgConfigDependency only: