diff options
author | Benjamin Redelings <benjamin.redelings@gmail.com> | 2017-12-30 11:27:46 -0800 |
---|---|---|
committer | Benjamin Redelings <benjamin.redelings@gmail.com> | 2018-01-01 22:42:49 -0800 |
commit | ea4d5697a8f874df197e33a4cbf17aa259ebf9e6 (patch) | |
tree | 706043b16f5b59ee207e48de71a0536ad911f03d | |
parent | a82abfcb4ac3e1ed2fbec82a248fb012e3c85210 (diff) | |
download | meson-ea4d5697a8f874df197e33a4cbf17aa259ebf9e6.zip meson-ea4d5697a8f874df197e33a4cbf17aa259ebf9e6.tar.gz meson-ea4d5697a8f874df197e33a4cbf17aa259ebf9e6.tar.bz2 |
Fix style issues.
-rw-r--r-- | mesonbuild/dependencies/misc.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index cc2b2b7..12575d5 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -361,7 +361,7 @@ class BoostDependency(ExternalDependency): all_found = True for module in self.requested_modules: args = None - libname = 'boost_'+module + libname = 'boost_' + module if self.is_multithreading and not mesonlib.for_linux(self.want_cross, self.env): # - Linux leaves off -mt but libraries are multithreading-aware. # - Mac requires -mt for multithreading, so should not fall back to non-mt libraries. @@ -426,9 +426,9 @@ class BoostDependency(ExternalDependency): def extra_lib_dirs(self): dirs = [] if self.boost_root: - dirs= [ os.path.join(self.boost_root, 'lib')] + dirs = [os.path.join(self.boost_root, 'lib')] elif self.libdir: - dirs = [ self.libdir ] + dirs = [self.libdir] return dirs def get_link_args(self): |