boost: added "s" to lib pattern, to link with static lib

This commit is contained in:
Syl 2014-02-15 13:01:26 +01:00
parent b0330b0d5d
commit ab108c002d
1 changed files with 2 additions and 0 deletions

View File

@ -220,6 +220,8 @@ def boost_get_libs(self, *k, **kw):
t = []
if kw.get('mt', False):
t.append('mt')
if kw.get('static', False):
t.append('s')
if kw.get('abi', None):
t.append(kw['abi'])
tags = t and '(-%s)+' % '-'.join(t) or ''