Issue #5161: wrong paths for ctypes cleanup when Python is built in a

directory other than the source directory.
This commit is contained in:
Thomas Heller 2009-04-24 18:10:46 +00:00
parent 0badeef93e
commit addfe22821

View file

@ -1143,8 +1143,8 @@ pycremoval:
clean: pycremoval
find . -name '*.o' -exec rm -f {} ';'
find . -name '*.s[ol]' -exec rm -f {} ';'
find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
find build -name 'fficonfig.h' -exec rm -f {} ';' || true
find build -name 'fficonfig.py' -exec rm -f {} ';' || true
profile-removal:
find . -name '*.gc??' -exec rm -f {} ';'