Commit addfe228 authored by Thomas Heller's avatar Thomas Heller

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

directory other than the source directory.
parent 0badeef9
......@@ -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 {} ';'
......
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