Fix a misplaced bracket in GLDependency constructor

This is a typo in 82bdf07a
This commit is contained in:
Jon Turney 2018-08-15 18:29:05 +01:00
parent f34f0717e0
commit e75b7cdc15
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
1 changed files with 1 additions and 1 deletions

View File

@ -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