mirror of
https://github.com/python/cpython.git
synced 2025-09-30 20:31:52 +00:00
Merged revisions 71842 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71842 | thomas.heller | 2009-04-24 20:10:46 +0200 (Fr, 24 Apr 2009) | 3 lines 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
5c56708f68
commit
6ab91487c4
1 changed files with 2 additions and 2 deletions
|
@ -1161,8 +1161,8 @@ docclean:
|
||||||
clean: pycremoval
|
clean: pycremoval
|
||||||
find . -name '*.o' -exec rm -f {} ';'
|
find . -name '*.o' -exec rm -f {} ';'
|
||||||
find . -name '*.s[ol]' -exec rm -f {} ';'
|
find . -name '*.s[ol]' -exec rm -f {} ';'
|
||||||
find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
|
find build -name 'fficonfig.h' -exec rm -f {} ';' || true
|
||||||
find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
|
find build -name 'fficonfig.py' -exec rm -f {} ';' || true
|
||||||
|
|
||||||
profile-removal:
|
profile-removal:
|
||||||
find . -name '*.gc??' -exec rm -f {} ';'
|
find . -name '*.gc??' -exec rm -f {} ';'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue