From: DRC Date: Wed, 23 Oct 2019 01:08:57 +0000 (-0500) Subject: Win packaging: Fix 64-bit VC/GCC co-install issue X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=708f013f89b2b4d09953141bc5576921ea2cc45e;p=libjpeg-turbo Win packaging: Fix 64-bit VC/GCC co-install issue --- diff --git a/ChangeLog.md b/ChangeLog.md index 3667d12..4d6960f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,14 @@ +2.0.4 +===== + +### Significant changes relative to 2.0.3: + +1. Fixed a regression in the Windows packaging system (introduced by +2.0 beta1[2]) whereby, if both the 64-bit libjpeg-turbo SDK for GCC and the +64-bit libjpeg-turbo SDK for Visual C++ were installed on the same system, only +one of them could be uninstalled. + + 2.0.3 ===== diff --git a/cmakescripts/BuildPackages.cmake b/cmakescripts/BuildPackages.cmake index 11d5426..395dd98 100644 --- a/cmakescripts/BuildPackages.cmake +++ b/cmakescripts/BuildPackages.cmake @@ -83,7 +83,7 @@ endif() if(BITS EQUAL 64) set(INST_PLATFORM "${INST_PLATFORM} 64-bit") set(INST_NAME ${INST_NAME}64) - set(INST_REG_NAME ${INST_DIR}64) + set(INST_REG_NAME ${INST_REG_NAME}64) set(INST_DEFS ${INST_DEFS} -DWIN64) endif()