This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: wrong paths for ctypes cleanup
Type: compile error Stage:
Components: Build Versions: Python 3.1, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: theller Nosy List: nascheme, rpetrov, theller
Priority: low Keywords:

Created on 2009-02-06 00:45 by nascheme, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg81243 - (view) Author: Neil Schemenauer (nascheme) * (Python committer) Date: 2009-02-06 00:45
The following code was added to Makefile.pre.in when ctypes was merged:

    find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
    find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true

If Python is compiled in a directory other than the source directory
than $(srcdir)/build does not exist and these commands don't work as
intended.  I think that proper path would be simply "build".
msg81305 - (view) Author: Roumen Petrov (rpetrov) * Date: 2009-02-06 22:03
Exactly but I don't open issue as I address it in issue5060 .
msg86419 - (view) Author: Thomas Heller (theller) * (Python committer) Date: 2009-04-24 18:13
Fixed in trunk svn rev. 71842, I will merge this into the py3k branch soon.
History
Date User Action Args
2022-04-11 14:56:45adminsetgithub: 49411
2009-04-24 18:13:35thellersetstatus: open -> closed
resolution: fixed
messages: + msg86419

versions: + Python 3.1, Python 2.7
2009-02-06 22:03:05rpetrovsetnosy: + rpetrov
messages: + msg81305
2009-02-06 00:45:41naschemecreate