diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-08-15 18:29:05 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2018-08-26 17:23:39 +0100 |
commit | e75b7cdc158b9153d1791d0b2acce01f19c40f23 (patch) | |
tree | 57bcc49696af0fc742dabbf46e595ae33fd81807 | |
parent | f34f0717e00756ea786ac62b3126d3425fcd6649 (diff) | |
download | meson-e75b7cdc158b9153d1791d0b2acce01f19c40f23.zip meson-e75b7cdc158b9153d1791d0b2acce01f19c40f23.tar.gz meson-e75b7cdc158b9153d1791d0b2acce01f19c40f23.tar.bz2 |
Fix a misplaced bracket in GLDependency constructor
This is a typo in 82bdf07a
-rw-r--r-- | mesonbuild/dependencies/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py index c877f51..34c9fb2 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -63,7 +63,7 @@ class GLDependency(ExternalDependency): candidates.append(functools.partial(PkgConfigDependency, 'gl', environment, kwargs)) if DependencyMethods.SYSTEM in methods: - candidates.append(functools.partial(GLDependency), environment, kwargs) + candidates.append(functools.partial(GLDependency, environment, kwargs)) return candidates |