[Python-checkins] cpython: Closes #23482: sqlite3_d.dll is not included in installer

steve.dower python-checkins at python.org
Thu Feb 19 03:02:38 CET 2015


https://hg.python.org/cpython/rev/70a55b2dee71
changeset:   94685:70a55b2dee71
parent:      94683:b2d238adf802
user:        Steve Dower <steve.dower at microsoft.com>
date:        Wed Feb 18 18:02:22 2015 -0800
summary:
  Closes #23482: sqlite3_d.dll is not included in installer

files:
  Tools/msi/lib/lib_files.wxs |  7 +++++++
  1 files changed, 7 insertions(+), 0 deletions(-)


diff --git a/Tools/msi/lib/lib_files.wxs b/Tools/msi/lib/lib_files.wxs
--- a/Tools/msi/lib/lib_files.wxs
+++ b/Tools/msi/lib/lib_files.wxs
@@ -46,6 +46,13 @@
             </Component>
             
             <?endforeach ?>
+            
+            <Component Id="sqlite3_d.dll" Directory="DLLs" Guid="*">
+                <File Name="sqlite3_d.dll" KeyPath="yes" />
+            </Component>
+            <Component Id="sqlite3_d.pdb" Directory="DLLs" Guid="*">
+                <File Name="sqlite3_d.pdb" KeyPath="yes" />
+            </Component>
         </ComponentGroup>
     </Fragment>
     <Fragment>

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list