diff options
author | Thomas Heller <theller@ctypes.org> | 2009-04-24 18:10:46 (GMT) |
---|---|---|
committer | Thomas Heller <theller@ctypes.org> | 2009-04-24 18:10:46 (GMT) |
commit | addfe22821ad8db05e8dd0e90fe68463dd69c500 (patch) | |
tree | cd4fca0b0d0828582c86acf150f299e91b97ef12 /Makefile.pre.in | |
parent | 0badeef93e608db0cf2bb648501c43c8ef3b0d56 (diff) | |
download | cpython-addfe22821ad8db05e8dd0e90fe68463dd69c500.zip cpython-addfe22821ad8db05e8dd0e90fe68463dd69c500.tar.gz cpython-addfe22821ad8db05e8dd0e90fe68463dd69c500.tar.bz2 |
Issue #5161: wrong paths for ctypes cleanup when Python is built in a
directory other than the source directory.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index caba97a..aa38885 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -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 {} ';' |