Don Dwiggins píše v St 14. 09. 2011 v 09:45 -0700: > That aside, it seems that the analysis phase is doing a lot of work, > even when nothing has changed among the sources. I can imagine that > it's checking all the dependency files as well, but still I wonder.
I suppose you are using svn version. To run pyinstaller there used to be three commands to run pyinstaller: Configure.py, Makespec.py and Build.py. We consolidated them to pyinstaller.py. Recently we changed the behavior of configuration phase. This phase is now running everytime you run pyinstaller.py. We tried to run it only when the python interpreter was changed but we had some issues with that. That's why this phase is running every time. It is not too much expensive. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
