Browse Source

configure: output a newline at the end of config.gypi

v0.9.1-release
Nathan Rajlich 13 years ago
parent
commit
9b7a6c5238
  1. 2
      configure

2
configure

@ -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')))

Loading…
Cancel
Save