On 8/18/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Thinking maybe something didn't get rebuilt that should have I am > rebuilding from scratch after a make distclean. > > make test is actually getting to the point where it's actually running > tests, so the make distclean seems to have solved the problem. Perhaps > there's a missing Makefile dependency somewhere.
This typically happens when an essential .h file changes -- the setup.py scripts that builds the extension module doesn't check these dependencies. Nothing we can fix in the Makefile, alas. The shorter fix is rm -rf build. Thanks for figuring this out! I was just about to start an investigation. -- --Guido van Rossum (home page: http://www.python.org/~guido/) _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
