mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Issue #5161: wrong paths for ctypes cleanup when Python is built in a
directory other than the source directory.
This commit is contained in:
parent
0badeef93e
commit
addfe22821
1 changed files with 2 additions and 2 deletions
|
@ -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 {} ';'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue