diff options
Diffstat (limited to 'tools/boost_names.py')
| -rwxr-xr-x | tools/boost_names.py | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/boost_names.py b/tools/boost_names.py index 9ac16bbc3..f9f1f1170 100755 --- a/tools/boost_names.py +++ b/tools/boost_names.py @@ -99,6 +99,10 @@ def get_library_names(jamfile):          for matches in res:              if ':' in matches.group(2):                  libs.append(matches.group(1)) +        res = re.finditer(r'^boost-lib[\s]+([A-Za-z0-9_]+)([^;]*);', jam, re.MULTILINE | re.DOTALL) +        for matches in res: +            if ':' in matches.group(2): +                libs.append('boost_{}'.format(matches.group(1)))      return libs  def exists(modules, module):  | 
