diff options
author | Jan Tojnar <jtojnar@gmail.com> | 2022-03-29 15:02:08 +0200 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-03-29 12:52:55 -0400 |
commit | 39623a36ca0dc757ea36960e0589a06ca798e5c1 (patch) | |
tree | 7a69f536dd8966ad8726502093238cdaf4647d65 | |
parent | 80192aa577578a094c7da2c3696edbfbd38052cf (diff) | |
download | meson-39623a36ca0dc757ea36960e0589a06ca798e5c1.zip meson-39623a36ca0dc757ea36960e0589a06ca798e5c1.tar.gz meson-39623a36ca0dc757ea36960e0589a06ca798e5c1.tar.bz2 |
gnome: Fix typo in _get_dependencies_flags
This was introduced in https://github.com/mesonbuild/meson/commit/823da3990947a8f4a2152826f0d7229f8a7a0159
-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 b6a7933..63d6bb6 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -682,7 +682,7 @@ class GnomeModule(ExtensionModule): external_ldflags.update(extdepflags[2]) external_ldflags_nodedup += extdepflags[3] gi_includes.update(extdepflags[4]) - depends.extend(libdepflags[5]) + depends.extend(extdepflags[5]) for source in dep.sources: if isinstance(source, GirTarget): gi_includes.update([os.path.join(state.environment.get_build_dir(), |