Index: 1/class/python-distutils.mk.in =================================================================== --- 1/class/python-distutils.mk.in (revision 305) +++ 1/class/python-distutils.mk.in (working copy) @@ -267,7 +267,9 @@ # Calling setup.py clean may create .pyc files, so we need a final cleanup # pass here. +# Also clean up .egg-info files generated by setuptools clean:: find . -name '*.pyc' -exec rm '{}' ';' + find . -name '*.egg-info' -exec rm -rf '{}' ';' endif