Skip to content

Commit 99b37b2

Browse files
Merge pull request #4468 from moonchen/quote-include-paths
Put quotes around include files
2 parents 1af8aef + 1b63202 commit 99b37b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,7 +818,7 @@ def get_inc_file(self, includes):
818818
c = c.replace("\\", "/")
819819
if self.CHROOT:
820820
c = c.replace(self.CHROOT, '')
821-
cmd_list.append('-I%s' % c)
821+
cmd_list.append('"-I%s"' % c)
822822
string = " ".join(cmd_list)
823823
f.write(string)
824824
return include_file

0 commit comments

Comments
 (0)