Win32: Add ignoreversion for the installation of bin/*, #452170.

In the switch to self-compiled openssl dlls, libeay32.dll lost
versioning information.  Without ignoreversion inno setup will not
update this file although it really should, as it is newer and has added
symbols.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@16238 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Andreas Köhler
2007-06-30 15:27:49 +00:00
parent 3fdd1361e2
commit 6d66455305

View File

@@ -57,7 +57,7 @@ Filename: "{app}\bin\gconftool-2.exe"; Parameters: "--shutdown"; Flags: runhidde
; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[Files]
; The main executables and DLLs
Source: "@prefix@\..\dist\bin\*"; DestDir: "{app}\bin"; Flags: recursesubdirs; Components: main; AfterInstall: MyAfterInstallConfig()
Source: "@prefix@\..\dist\bin\*"; DestDir: "{app}\bin"; Flags: recursesubdirs ignoreversion; Components: main; AfterInstall: MyAfterInstallConfig()
; Note: The above AfterInstall function will create the
; gnucash.bat file on-the-fly by the Pascal script below.