diff options
| author | Chris Morgan <chris.morganiser@gmail.com> | 2010-03-12 08:59:16 +0000 |
|---|---|---|
| committer | Chris Morgan <chris.morganiser@gmail.com> | 2010-03-12 08:59:16 +0000 |
| commit | c832e754eb74643825a1afa9e1b98c47682ecf41 (patch) | |
| tree | 32477dee418126e9ba34ce1c14b48fd7b4c06e80 /packaging | |
| parent | Hopefully fix #334800 (input devices configuration not saved). (diff) | |
| download | inkscape-c832e754eb74643825a1afa9e1b98c47682ecf41.tar.gz inkscape-c832e754eb74643825a1afa9e1b98c47682ecf41.zip | |
Win32 uninstaller: MD5 checksums need string comparison rather than int comparison
(bzr r9178)
Diffstat (limited to 'packaging')
| -rwxr-xr-x | packaging/win32/inkscape.nsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/win32/inkscape.nsi b/packaging/win32/inkscape.nsi index 8074a480f..c7200772a 100755 --- a/packaging/win32/inkscape.nsi +++ b/packaging/win32/inkscape.nsi @@ -962,7 +962,7 @@ Section Uninstall ; do the uninstalling {{{ ${Else} md5dll::GetMD5File /NOUNLOAD $filename Pop $5 ;md5 of file - ${If} $3 = $5 + ${If} $3 == $5 StrCpy $3 1 ; yes ${ElseIf} $6 != never ; the md5 sums does not match so we ask |
