[Python-checkins] python/dist/src/Tools/msi msi.py,1.3,1.4

loewis at users.sourceforge.net loewis at users.sourceforge.net
Mon Aug 30 11:22:33 CEST 2004


Update of /cvsroot/python/python/dist/src/Tools/msi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23267

Modified Files:
	msi.py 
Log Message:
Pickup Tk from tcltk directory.

Index: msi.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/msi/msi.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- msi.py	26 Aug 2004 05:23:19 -0000	1.3
+++ msi.py	30 Aug 2004 09:22:30 -0000	1.4
@@ -421,11 +421,13 @@
     exit_dialog.cancel("Cancel", "Back", active = 0)
     exit_dialog.text("Acknowledgements", 135, 95, 220, 120, 0x30003,
       "Special Windows thanks to:\n"
-      "    LettError, Erik van Blokland, for the Python for Windows graphic.\n"
+      "    LettError, Erik van Blokland, for the \n"
+      "    Python for Windows graphic.\n"
       "       http://www.letterror.com/\n"
       "\n"
-      "    Mark Hammond, without whose years of freely shared Windows\n"
-      "    expertise, Python for Windows would still be Python for DOS.")
+      "    Mark Hammond, without whose years of freely \n"
+      "    shared Windows expertise, Python for Windows \n"
+      "    would still be Python for DOS.")
 
     exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
                "Click the Finish button to exit the Installer.")
@@ -917,7 +919,7 @@
         lib.start_component("TkDLLs", tcltk)
         lib.add_file("_tkinter.pyd")
         dlls.append("_tkinter.pyd")
-        tcldir = os.path.normpath(srcdir+"/../tcl84/bin")
+        tcldir = os.path.normpath(srcdir+"/../tcltk/bin")
         for f in glob.glob1(tcldir, "*.dll"):
             lib.add_file(f, src=os.path.join(tcldir, f))
     # check whether there are any unknown extensions
@@ -937,7 +939,7 @@
         lib.add_file(f.replace('pyd','lib'))
     lib.add_file('python%s%s.lib' % (major, minor))
     # Add Tcl/Tk
-    tcldirs = [(root, '../tcl84/lib', 'tcl')]
+    tcldirs = [(root, '../tcltk/lib', 'tcl')]
     tcltk.set_current()
     while tcldirs:
         parent, phys, dir = tcldirs.pop()



More information about the Python-checkins mailing list