summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinzenz Feenstra <vfeenstr@redhat.com>2016-06-22 14:53:44 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2016-06-22 16:28:08 +0200
commitc17e88b20c5852cf8e07556a40752f49930bc7a2 (patch)
tree5d339ae5983c15f3e9d0c6d88be67e64a47269fe
parenta1b2a6f3c2e8c4708077c935486dec730e7706d9 (diff)
Correct path to QEMU GA MSI files
Previously the path to the qemu-ga-x{86,64}.msi files was incorrect. The files are installed into the drivers sub-directory. Change-Id: I697dccf37fb868c335b0113c6c09f628d2fcbe27 Signed-off-by: Vinzenz Feenstra <vfeenstr@redhat.com>
-rw-r--r--win-guest-tools.nsis8
1 files changed, 4 insertions, 4 deletions
diff --git a/win-guest-tools.nsis b/win-guest-tools.nsis
index 3e70bd0..591b806 100644
--- a/win-guest-tools.nsis
+++ b/win-guest-tools.nsis
@@ -430,18 +430,18 @@ FunctionEnd
Function InstallQemuGuestAgent
${if} ${RunningX64}
- StrCpy $0 "$INSTDIR\guest-agent\qemu-ga-x64.msi"
+ StrCpy $0 "$INSTDIR\drivers\guest-agent\qemu-ga-x64.msi"
${else}
- StrCpy $0 "$INSTDIR\guest-agent\qemu-ga-x86.msi"
+ StrCpy $0 "$INSTDIR\drivers\guest-agent\qemu-ga-x86.msi"
${endif}
ExecWait '"msiexec.exe" /qn /i "$0"'
FunctionEnd
Function un.UninstallQemuGuestAgent
${if} ${RunningX64}
- StrCpy $0 "$INSTDIR\guest-agent\qemu-ga-x64.msi"
+ StrCpy $0 "$INSTDIR\drivers\guest-agent\qemu-ga-x64.msi"
${else}
- StrCpy $0 "$INSTDIR\guest-agent\qemu-ga-x86.msi"
+ StrCpy $0 "$INSTDIR\drivers\guest-agent\qemu-ga-x86.msi"
${endif}
ExecWait '"msiexec.exe" /qn /x "$0"'
FunctionEnd