Skip to content

Commit

Permalink
single-header.py: Normalize the include paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
mpark committed Aug 18, 2017
1 parent 1a44221 commit 1686d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/single-header.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def process(header):
result += line
else:
g = m.group(1)
include = os.path.join(os.path.dirname(header), g)
include = os.path.normpath(os.path.join(os.path.dirname(header), g))
if include not in processed:
result += process(include)
result += '\n'
Expand Down

0 comments on commit 1686d96

Please sign in to comment.