Merge pull request #4468 from moonchen/quote-include-paths

Put quotes around include files
pull/4678/merge
Jimmy Brisson 2017-07-06 10:13:27 -05:00 committed by GitHub
commit 99b37b28bb
1 changed files with 1 additions and 1 deletions

View File

@ -818,7 +818,7 @@ class mbedToolchain:
c = c.replace("\\", "/")
if self.CHROOT:
c = c.replace(self.CHROOT, '')
cmd_list.append('-I%s' % c)
cmd_list.append('"-I%s"' % c)
string = " ".join(cmd_list)
f.write(string)
return include_file