Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
configure: output a newline at the end of config.gypi
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Apr 11, 2012
1 parent fdeeabb commit 9b7a6c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -346,7 +346,7 @@ def write(filename, data):
f.write(data)

write('config.gypi', "# Do not edit. Generated by the configure script.\n" +
pprint.pformat(output, indent=2))
pprint.pformat(output, indent=2) + "\n")

write('config.mk', "# Do not edit. Generated by the configure script.\n" +
("BUILDTYPE=%s\n" % ('Debug' if options.debug else 'Release')))
Expand Down

0 comments on commit 9b7a6c5

Please sign in to comment.