[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[minion-cvs] Note possible py2exe bug and workaround.



Update of /home/minion/cvsroot/src/minion
In directory moria.mit.edu:/tmp/cvs-serv27269

Modified Files:
	setup.py 
Log Message:
Note possible py2exe bug and workaround.

Index: setup.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/setup.py,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -d -r1.92 -r1.93
--- setup.py	7 Mar 2004 06:33:56 -0000	1.92
+++ setup.py	7 Mar 2004 21:07:42 -0000	1.93
@@ -513,7 +513,8 @@
 if 'py2exe' in sys.argv:
     # Py2EXE wants numberic versions for Windows
     VERSION = "." .join(map(str,VERSION_INFO))
-    # XXXX WRONG!!!!
+    # XXXX This is only necessary because of an apparent py2exe 0.5.0 bug;
+    # XXXX I have submitted a bug report [911596] to sourceforge.
     sys.path.append("./build/lib.win32-2.3")
     EXTRA = {
         'console' : SCRIPTS,