summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-05-21 23:06:58 (GMT)
committerNed Deily <nad@acm.org>2011-05-21 23:06:58 (GMT)
commit70b3ee543313956021cbdfc919e9823eba6f300f (patch)
tree9b55e118f167ba4871e3746007702f888a05c9a6
parent2c40f60c32dbc97fc1c434e3501621902e46121f (diff)
downloadcpython-70b3ee543313956021cbdfc919e9823eba6f300f.zip
cpython-70b3ee543313956021cbdfc919e9823eba6f300f.tar.gz
cpython-70b3ee543313956021cbdfc919e9823eba6f300f.tar.bz2
Issue #12131: Ensure that the sysconfig.cfg file, introduced by packaging,
is installed into the lib directory: prevents startup exception in site.py.
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index e8624ed..04d126f 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); \