[Python-checkins] cpython (3.6): Issue #28046: Fix the removal of the sysconfigdata module

xavier.degaye python-checkins at python.org
Fri Oct 28 05:41:33 EDT 2016


https://hg.python.org/cpython/rev/86577b7100a4
changeset:   104771:86577b7100a4
branch:      3.6
parent:      104765:df28e536f19d
user:        Xavier de Gaye <xdegaye at users.sourceforge.net>
date:        Fri Oct 28 11:22:05 2016 +0200
summary:
  Issue #28046: Fix the removal of the sysconfigdata module
from lib-dynload on install.

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


diff --git a/Makefile.pre.in b/Makefile.pre.in
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1302,8 +1302,6 @@
 	done
 	$(INSTALL_DATA) `cat pybuilddir.txt`/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py \
 		$(DESTDIR)$(LIBDEST); \
-	echo $(INSTALL_DATA) `cat pybuilddir.txt`/_sysconfigdata_$(ABIFLAGS).py \
-		$(LIBDEST)
 	$(INSTALL_DATA) $(srcdir)/LICENSE $(DESTDIR)$(LIBDEST)/LICENSE.txt
 	if test -d $(DESTDIR)$(LIBDEST)/distutils/tests; then \
 		$(INSTALL_DATA) $(srcdir)/Modules/xxmodule.c \
@@ -1437,7 +1435,7 @@
 		--install-scripts=$(BINDIR) \
 		--install-platlib=$(DESTSHARED) \
 		--root=$(DESTDIR)/
-	-rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata_$(ABIFLAGS).py
+	-rm $(DESTDIR)$(DESTSHARED)/_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH).py
 	-rm -r $(DESTDIR)$(DESTSHARED)/__pycache__
 
 # Here are a couple of targets for MacOSX again, to install a full

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


More information about the Python-checkins mailing list