Update build script for Inno Setup 5.5.9.

Between 5.5.6 and 5.5.9 the default output file name changed. To
defend against that potentially happening again, I'm now explicitly
specifying the output file name in the .iss source file (or rather, in
winiss.pl, which constructs it).
This commit is contained in:
Simon Tatham
2016-04-09 11:44:03 +01:00
parent c0bc13c3f2
commit 9d15092e7f
2 changed files with 4 additions and 3 deletions

View File

@ -56,6 +56,7 @@ print 'DefaultGroupName=Simon Tatham\'s Puzzles'."\n";
print 'ChangesAssociations=no'."\n";
print 'Compression=zip/9'."\n";
print 'AllowNoIcons=yes'."\n";
print 'OutputBaseFilename=installer'."\n";
print ''."\n";
print '[Files]'."\n";
for $exe (@exes) {