mirror of https://github.com/python/cpython
Issue #12131: Ensure that the sysconfig.cfg file, introduced by packaging,
is installed into the lib directory: prevents startup exception in site.py.
This commit is contained in:
parent
2c40f60c32
commit
70b3ee5433
|
@ -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); \
|
||||
|
|
Loading…
Reference in New Issue