Commit 1d623fd3 authored by Barry Warsaw's avatar Barry Warsaw

"python setup.py clean" doesn't work well when you've built things

--inplace so use this instead.  Copied from Zope3.
parent 71978a44
#! /bin/sh
# "python setup.py clean" doesn't work with a --inplace build, so use
# this instead (copied from the Zope3 tree).
files=`find -name \*.o -o -name \*.so -o -name \*.py[co] -o -name core\*`
if [ ! -z "$files" ] ; then
rm $files
fi
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment