Option -i broken in py2exe_for_demandload
Using the includes option -i on modified py2exe is
not working.
Change:
- setup.py: convert self.includes to a list.
--- a/setup.py Mon Oct 24 14:34:48 2005 -0700
+++ b/setup.py Mon Oct 24 14:52:30 2005 -0700
@@ -34,6 +34,8 @@
# Sets the 'includes' option with the list of needed modules
if not self.includes:
self.includes = []
+ else:
+ self.includes = self.includes.split(',')
self.includes += mercurial.packagescan.getmodules(self.build_lib,
'mercurial')
self.includes += mercurial.packagescan.getmodules(self.build_lib,