From: Ned Deily Date: Sat, 21 May 2011 23:06:58 +0000 (-0700) Subject: Issue #12131: Ensure that the sysconfig.cfg file, introduced by packaging, X-Git-Tag: v3.3.0a1~2198 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70b3ee543313956021cbdfc919e9823eba6f300f;p=python Issue #12131: Ensure that the sysconfig.cfg file, introduced by packaging, is installed into the lib directory: prevents startup exception in site.py. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index e8624ed084..04d126fde3 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -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); \