diff options
| author | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2016-09-14 16:59:53 -0400 |
|---|---|---|
| committer | Elliott Sales de Andrade <quantum.analyst@gmail.com> | 2016-09-14 16:59:53 -0400 |
| commit | 28e1f3ba13c00eff2040effb9c12078351107c20 (patch) | |
| tree | e80b5828935c10cce0e1da91c723d61cd0629192 | |
| parent | 7a6534e05440faa686098f21bbfdf31a1459817b (diff) | |
| download | meson-28e1f3ba13c00eff2040effb9c12078351107c20.tar.gz | |
Fix pkgconfig libraries passed to GIR targets.
| -rw-r--r-- | mesonbuild/modules/gnome.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 8da9035cd..3609d2fa7 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -252,7 +252,7 @@ class GnomeModule: # Hack to avoid passing some compiler options in if lib.startswith("-W"): continue - scan_command += [lib] + scan_command += [lib] if isinstance(dep, dependencies.PkgConfigDependency): girdir = dep.get_variable("girdir") |
