aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/dependencies.py')
-rw-r--r--mesonbuild/dependencies.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/mesonbuild/dependencies.py b/mesonbuild/dependencies.py
index 9d6fb6c..c0e8851 100644
--- a/mesonbuild/dependencies.py
+++ b/mesonbuild/dependencies.py
@@ -529,7 +529,7 @@ class BoostDependency(Dependency):
# Some boost libraries have different names for
# their sources and libraries. This dict maps
# between the two.
- name2lib = {'test' : 'unit_test_framework'}
+ name2lib = {'test': 'unit_test_framework'}
def __init__(self, environment, kwargs):
Dependency.__init__(self, 'boost')
@@ -1458,9 +1458,9 @@ packages = {'boost': BoostDependency,
'qt4': Qt4Dependency,
'gnustep': GnuStepDependency,
'appleframeworks': AppleFrameworks,
- 'wxwidgets' : WxDependency,
- 'sdl2' : SDL2Dependency,
- 'gl' : GLDependency,
- 'threads' : ThreadDependency,
- 'python3' : Python3Dependency,
+ 'wxwidgets': WxDependency,
+ 'sdl2': SDL2Dependency,
+ 'gl': GLDependency,
+ 'threads': ThreadDependency,
+ 'python3': Python3Dependency,
}