diff options
author | Ned Deily <nad@acm.org> | 2011-05-21 23:06:58 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-05-21 23:06:58 (GMT) |
commit | 70b3ee543313956021cbdfc919e9823eba6f300f (patch) | |
tree | 9b55e118f167ba4871e3746007702f888a05c9a6 /Makefile.pre.in | |
parent | 2c40f60c32dbc97fc1c434e3501621902e46121f (diff) | |
download | cpython-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.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 2 |
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); \ |