Fix missing comma in backend.Backend.dedup_arguments()

This error meant that -I flags passed to the compiler were never
actually deduplicated.
This commit is contained in:
Sam Thursfield 2016-10-01 01:47:27 +01:00 committed by Jussi Pakkanen
parent 08e43e8bfd
commit 24e50b2697
1 changed files with 1 additions and 1 deletions

View File

@ -620,7 +620,7 @@ class Backend():
final_commands = []
previous = '-fsuch_arguments=woof'
for c in commands:
if c.startswith(('-I' '-L', '/LIBPATH')):
if c.startswith(('-I', '-L', '/LIBPATH')):
if c in includes:
continue
includes[c] = True