Fix one more issue in msvc_pdb.py

This commit is contained in:
Thomas Nagy 2019-11-09 00:55:18 +01:00
parent 8849fe04e7
commit b5173b099e
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def add_pdb_per_object(self):
link_task = getattr(self, 'link_task', None)
for task in self.compiled_tasks:
if task.inputs and task.inputs[0].name().lower().endswith('.rc'):
if task.inputs and task.inputs[0].name.lower().endswith('.rc'):
continue
add_pdb = False