diff options
Diffstat (limited to 'dependencies.py')
-rw-r--r-- | dependencies.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dependencies.py b/dependencies.py index 605e623..c7741be 100644 --- a/dependencies.py +++ b/dependencies.py @@ -275,8 +275,8 @@ class BoostDependency(Dependency): # FIXME, these are in gcc format, not msvc. # On the other hand, so are the flags that # pkg-config returns. - flags += '-I' + os.path.join(self.boost_root, 'include') - flags += '-L' + os.path.join(self.boost_root, 'lib') + flags.append('-I' + os.path.join(self.boost_root, 'include')) + flags.append('-L' + os.path.join(self.boost_root, 'lib')) for module in self.requested_modules: if module in self.lib_modules or module in self.lib_modules_mt: linkcmd = '-lboost_' + module |