add new line to version.h to avoid gcc warning

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4558 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2006-03-08 16:44:22 +00:00
parent 502f3c67da
commit 7e6bba5c3f

View file

@ -158,7 +158,7 @@ f.close()
# write version into version.h
f = open(File('#Source/version.h').abspath, 'w')
f.write('#define NSIS_VERSION "v%s"' % defenv['VERSION'])
f.write('#define NSIS_VERSION "v%s"\n' % defenv['VERSION'])
f.close()
######################################################################