[issue13326] make clean failed on OpenBSD

STINNER Victor report at bugs.python.org
Thu Nov 3 10:24:49 CET 2011


STINNER Victor <victor.stinner at haypocalc.com> added the comment:

By the way, removing *.pyc and *.pyo is useless: Python 3.3 only generates such files in __pycache__:

+	-find $(srcdir) -name '*.py[co]' -print0 | xargs -0r rm -f
+	-find $(srcdir) -name '__pycache__' -print0 | xargs -0r rmdir

can be simplified to

+	-find $(srcdir) -name '__pycache__' -print0 | xargs -0r rm -rf

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue13326>
_______________________________________


More information about the Python-bugs-list mailing list