[Python-checkins] cpython: Issue #12131: Ensure that the sysconfig.cfg file, introduced by packaging,

ned.deily python-checkins at python.org
Sun May 22 01:07:22 CEST 2011


http://hg.python.org/cpython/rev/f37a4e1182d6
changeset:   70265:f37a4e1182d6
user:        Ned Deily <nad at acm.org>
date:        Sat May 21 16:06:58 2011 -0700
summary:
  Issue #12131: Ensure that the sysconfig.cfg file, introduced by packaging,
is installed into the lib directory: prevents startup exception in site.py.

files:
  Makefile.pre.in |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -947,7 +947,7 @@
 		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); \

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list