[issue1704287] UnicodeError in compileall if "make install" is run before "make".

2007-09-20 Thread Sean Reifschneider
Sean Reifschneider added the comment: I can verify that this happens in trunk (2.6) on CentOS 5, 32-bit. Patch review looks good, and solves the problem. I've committed it to trunk as revision 58225. -- nosy: +jafo resolution: -> accepted status: open -> closed type: -> behavior vers

[issue1704287] UnicodeError in compileall if "make install" is run before "make".

2007-09-20 Thread Stephen Warren
Stephen Warren added the comment: Now, I have also tested: ./configure; make all install ./configure; make all; make install The "install" piece of each of the above doesn't seem to accidentally duplicate any of the building work, so the patch seems to check out OK - no negative side-effects.

[issue1704287] UnicodeError in compileall if "make install" is run before "make".

2007-09-20 Thread Sean Reifschneider
Changes by Sean Reifschneider: -- keywords: +patch _ Tracker <[EMAIL PROTECTED]> _ ___ Python-bugs-list mailing list Unsubscribe: h

[issue1704287] UnicodeError in compileall if "make install" is run before "make".

2007-09-20 Thread Stephen Warren
Stephen Warren added the comment: The attached patch should solve the problem by adding appropriate dependencies to the libinstall target. I have tested: ./configure; make install but not yet: ./configure; make all install ./configure; make all; make install Note: I introduced a new "build_a

[issue1704287] UnicodeError in compileall if "make install" is run before "make".

2007-09-20 Thread Sean Reifschneider
Changes by Sean Reifschneider: -- title: must run "make" before "make install" -> UnicodeError in compileall if "make install" is run before "make". _ Tracker <[EMAIL PROTECTED]> _