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 gwolski
Recipients gwolski
Date 2022-01-11.23:32:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641943967.39.0.327785267688.issue46351@roundup.psfhosted.org>
In-reply-to
Content
In reviewing the output of make -n install, I notice certain paths are missing '/' separators: 

if test "x" != "x" ; then \
	rm -f /usr/local/python3.9.9/binpython3.9-32; \
	lipo  \
		-output /usr/local/python3.9.9/bin/python3.9-32 \
		/usr/local/python3.9.9/bin/python3.9; \
fi

There should be a '/' between bin and python3.9-32 and other lines have the same issue. The Makefile source lines where I see this error are:

        if test "x$(LIPO_32BIT_FLAGS)" != "x" ; then \
-->                rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-32$(EXE); \
                lipo $(LIPO_32BIT_FLAGS) \
                        -output $(DESTDIR)$(BINDIR)/python$(VERSION)-32$(EXE) \
                        $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
        fi
        if test "x$(LIPO_INTEL64_FLAGS)" != "x" ; then \
-->                rm -f $(DESTDIR)$(BINDIR)python$(VERSION)-intel64$(EXE); \
                lipo $(LIPO_INTEL64_FLAGS) \
                        -output $(DESTDIR)$(BINDIR)/python$(VERSION)-intel64$(EXE) \
                        $(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE); \
        fi


I think the lines I've marked with --> above should have the '/' after $(BINDIR).... ????
History
Date User Action Args
2022-01-11 23:32:47gwolskisetrecipients: + gwolski
2022-01-11 23:32:47gwolskisetmessageid: <1641943967.39.0.327785267688.issue46351@roundup.psfhosted.org>
2022-01-11 23:32:47gwolskilinkissue46351 messages
2022-01-11 23:32:47gwolskicreate