From 75c23bddbec1fbb2ae1d615f4a38db74095f387f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Thu, 30 Aug 2007 18:25:47 +0000 Subject: [PATCH] Bug #1746880: Correctly install DLLs into system32 folder on Win64. --- Misc/NEWS | 2 ++ Tools/msi/msi.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Misc/NEWS b/Misc/NEWS index 1d14835b2c9..00c1ffc884b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -949,6 +949,8 @@ Tools/Demos Build ----- +- Bug #1746880: Correctly install DLLs into system32 folder on Win64. + - Define _BSD_SOURCE, to get access to POSIX extensions on OpenBSD 4.1+. - Stop supporting AtheOS and cause a build error in configure for the platform. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 6692597a01e..6545f454f18 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -167,7 +167,7 @@ else: testprefix = '' if msilib.Win64: - SystemFolderName = "[SystemFolder64]" + SystemFolderName = "[System64Folder]" else: SystemFolderName = "[SystemFolder]"