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.

Author christian.heimes
Recipients BreamoreBoy, christian.heimes, goeran, loewis, morth
Date 2013-07-07.18:37:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1373222251.33.0.832293189061.issue896330@psf.upfronthosting.co.za>
In-reply-to
Content
I found the reason for the issue. pyconfig.h is installed to CONFINCLUDEPY. The other header files are copied to INCLUDEPY

INCLUDEDIR=     @includedir@
CONFINCLUDEDIR= $(exec_prefix)/include

INCLUDEPY=      $(INCLUDEDIR)/python$(LDVERSION)
CONFINCLUDEPY=  $(CONFINCLUDEDIR)/python$(LDVERSION)


        @for i in $(srcdir)/Include/*.h; \
        do \
                echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
                $(INSTALL_DATA) $$i $(DESTDIR)$(INCLUDEPY); \
        done
        $(INSTALL_DATA) pyconfig.h $(DESTDIR)$(CONFINCLUDEPY)/pyconfig.h
History
Date User Action Args
2013-07-07 18:37:31christian.heimessetrecipients: + christian.heimes, loewis, goeran, morth, BreamoreBoy
2013-07-07 18:37:31christian.heimessetmessageid: <1373222251.33.0.832293189061.issue896330@psf.upfronthosting.co.za>
2013-07-07 18:37:31christian.heimeslinkissue896330 messages
2013-07-07 18:37:31christian.heimescreate