]> git.saurik.com Git - wxWidgets.git/commitdiff
put unicows.dll in the python dir
authorRobin Dunn <robin@alldunn.com>
Tue, 21 Nov 2006 03:42:47 +0000 (03:42 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 21 Nov 2006 03:42:47 +0000 (03:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43555 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/distrib/make_installer.py

index 54f266193e8c323927719c292a6603e1ca45f59b..39917891d620c64425b488dfdc843adc189623e9 100644 (file)
@@ -22,7 +22,7 @@ will be created.
 
 import sys, os, time
 
-KEEP_TEMPS = True
+KEEP_TEMPS = False
 # default InnoSetup installer location
 ISCC = r"%s\InnoSetup5\ISCC.exe %s"
 
@@ -719,7 +719,7 @@ Building Win32 installer for wxPython:
     MSLU=''
     CHARTYPE='ansi'
     if "UNICODE=1" in sys.argv:
-        MSLU=r'Source: "distrib\msw\unicows.dll"; DestDir: "{app}\%(PKGDIR)s\wx"; Components: core; Flags: replacesameversion' % vars()
+        MSLU=r'Source: "distrib\msw\unicows.dll"; DestDir: "{code:GetPythonDir}"; Components: core; Flags: replacesameversion sharedfile' % vars()
         CHARTYPE='unicode'
 
     f = open(ISSFILE, "w")