Commit 70b3ee54 authored by Ned Deily's avatar Ned Deily

Issue #12131: Ensure that the sysconfig.cfg file, introduced by packaging,

is installed into the lib directory: prevents startup exception in site.py.
parent 2c40f60c
......@@ -947,7 +947,7 @@ libinstall: build_all $(srcdir)/Lib/$(PLATDIR)
else true; \
fi; \
done
@for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.egg-info ; \
@for i in $(srcdir)/Lib/*.py $(srcdir)/Lib/*.egg-info $(srcdir)/Lib/*.cfg ; \
do \
if test -x $$i; then \
$(INSTALL_SCRIPT) $$i $(DESTDIR)$(LIBDEST); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment