[Distutils] installing header files in directories

Jeremy Hylton jeremy@alum.mit.edu
Thu Dec 19 18:37:02 2002


Is there some way to get a header file installed in a subdirectory?
Zope3 has code that looks like this:

   #include "Zope/Proxy/proxy.h"

I don't know how to ask distutils to create

    /usr/local/include/python2.x/Zope/Proxy/proxy.h

The only thing it seems willing to do is create a single directory
inside include/python2.x and place all my .h files there.

Jeremy