From bfc7292dafc86bcd518c478c03ab1c1e2c6446fb Mon Sep 17 00:00:00 2001 From: "SND\\air_max_cp" Date: Mon, 26 Dec 2011 16:59:46 +0000 Subject: [PATCH] setup: 1.x fixed error flag clean before Python setup git-svn-id: https://pykd.svn.codeplex.com/svn@72703 9b283d60-5439-405e-af05-b73fd8c4d996 --- setup/pykd_setup_common.nsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/pykd_setup_common.nsh b/setup/pykd_setup_common.nsh index 8a8642a..84df580 100644 --- a/setup/pykd_setup_common.nsh +++ b/setup/pykd_setup_common.nsh @@ -136,7 +136,7 @@ VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "${PRODUCT_VERSION}" !insertmacro _LOGICLIB_TEMP Push 'msvcr90.dll' Push 'Microsoft.VC90.CRT,version="9.0.21022.8",type="win32",processorArchitecture="${ARCH}",publicKeyToken="1fc8b3b9a1e18e3b"' - ${WinSxS_HasAssembly} + ${WinSxS_HasAssembly} Pop $_LOGICLIB_TEMP !insertmacro _== $_LOGICLIB_TEMP 1 `${_t}` `${_f}` !macroend @@ -213,6 +213,7 @@ Section "Python ${PYTHON_VERSION} ${PRODUCT_ARCH}" sec_python ${If} $0 == "OK" DetailPrint "Successfully downloaded." DetailPrint "Installing Python..." + ClearErrors ExecWait '"msiexec" /i "$TEMP\${PYTHON_INSTALLER}"' IfErrors PythonInstallFailed DetailPrint "Successfully installed."