From a2b597d6028e9252c03552ae4bc9424a08f8a986 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Sun, 17 Nov 2013 22:35:38 +0200 Subject: [PATCH] D'oh. --- dependencies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dependencies.py b/dependencies.py index 605e6238d..c7741be35 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