aboutsummaryrefslogtreecommitdiff
path: root/dependencies.py
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies.py')
-rw-r--r--dependencies.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/dependencies.py b/dependencies.py
index 165fd2f..7aa2464 100644
--- a/dependencies.py
+++ b/dependencies.py
@@ -539,10 +539,7 @@ class BoostDependency(Dependency):
def get_win_link_args(self):
args = []
if self.boost_root:
- # FIXME, these are in gcc format, not msvc.
- # On the other hand, so are the args that
- # pkg-config returns.
- args.append('/LIBPATH:' + self.libdir)
+ args.append('-L' + self.libdir)
for module in self.requested_modules:
module = BoostDependency.name2lib.get(module, module)
if module in self.lib_modules_mt: