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 Arfrever
Recipients Arfrever, doko, vstinner
Date 2015-11-22.17:18:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1448212692.34.0.693206250677.issue25696@psf.upfronthosting.co.za>
In-reply-to
Content
This problem in bininstall target seems to exist since Python 2.7 and 3.1.

bininstall target depends on altbininstall target, which contains:

        @for i in $(BINDIR) $(LIBDIR); \
        do \
                if test ! -d $(DESTDIR)$$i; then \
                        echo "Creating directory $$i"; \
                        $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
                else    true; \
                fi; \
        done

For consistency with other things, I would suggest to add the following at the beginning of bininstall target (instead of making bininstall target depend on libainstall target):

        @for i in $(LIBPC); \
        do \
                if test ! -d $(DESTDIR)$$i; then \
                        echo "Creating directory $$i"; \
                        $(INSTALL) -d -m $(DIRMODE) $(DESTDIR)$$i; \
                else    true; \
                fi; \
        done
History
Date User Action Args
2015-11-22 17:18:12Arfreversetrecipients: + Arfrever, doko, vstinner
2015-11-22 17:18:12Arfreversetmessageid: <1448212692.34.0.693206250677.issue25696@psf.upfronthosting.co.za>
2015-11-22 17:18:12Arfreverlinkissue25696 messages
2015-11-22 17:18:12Arfrevercreate