From c17e88b20c5852cf8e07556a40752f49930bc7a2 Mon Sep 17 00:00:00 2001 From: Vinzenz Feenstra Date: Wed, 22 Jun 2016 14:53:44 +0200 Subject: 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 --- win-guest-tools.nsis | 8 ++++---- 1 file 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 -- cgit v1.2.3