correct handling of 2 msi install

This commit is contained in:
Mario Fetka 2011-06-26 13:33:21 +02:00
parent 30d9735824
commit 61823e84cf
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
Set $MsiId$ = '{1E38D402-2678-4668-9812-45CD06658846}' Set $MsiId$ = '{1E38D402-2678-4668-9812-45CD06658846}'
Set $MsiIdHelp$ = '{BC8B55D1-5B97-4882-9345-0D16FB25A76A}' ; Set $MsiIdHelp$ = '{BC8B55D1-5B97-4882-9345-0D16FB25A76A}'
Set $UninstallProgram$ = $InstallDir$ + "\iv_uninstall.exe" Set $UninstallProgram$ = $InstallDir$ + "\iv_uninstall.exe"
Message "Uninstalling " + $ProductId$ + " ..." Message "Uninstalling " + $ProductId$ + " ..."
@ -36,7 +36,7 @@ LinkFolder_uninstall
"$UninstallProgram$" /silent "$UninstallProgram$" /silent
[Winbatch_uninstall_msi] [Winbatch_uninstall_msi]
msiexec /x $MsiIdHelp$ /qb! REBOOT=ReallySuppress msiexec /x {BC8B55D1-5B97-4882-9345-0D16FB25A76A} /qb! REBOOT=ReallySuppress
msiexec /x $MsiId$ /qb! REBOOT=ReallySuppress msiexec /x $MsiId$ /qb! REBOOT=ReallySuppress
[Files_uninstall] [Files_uninstall]

View File

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
PN="libreoffice" PN="libreoffice"
VERSION="3.4.0" VERSION="3.4.0"
RELEASE="1" RELEASE="2"
PRIORITY="0" PRIORITY="0"
ADVICE="" ADVICE=""
TYPE="public" TYPE="public"