Comment 6 for bug 392355

Revision history for this message
cortesi (aldo) wrote : Re: C extensions placed in wrong directory

I'm seeing this problem with C extensions in my own projects. An extension declaration like this:

       Extension(
            "module.extension",
            sources = ["module/extension.c"],
        )

Results in an object file at "module/module/extension.so" rather than "module/extension.so". The fact that this happens with all my projects and only on Karmic seems to show that there's been some modification to the Python build mechanism that's causing this. Also, note that Python 2.5 doesn't seem to have this problem - only Python 2.6.

Regards,

Aldo