diff options
author | Xavier de Gaye <xdegaye@users.sourceforge.net> | 2016-10-28 09:22:05 (GMT) |
---|---|---|
committer | Xavier de Gaye <xdegaye@users.sourceforge.net> | 2016-10-28 09:22:05 (GMT) |
commit | 1c17e7ff08bb93de07ce8554a59b7474442cf48c (patch) | |
tree | bbefd248e9671e9bf4110d8b5623c83cfcea3ea8 /Makefile.pre.in | |
parent | b6bd81dee9a7a3fea03c92e27eb232fee9ce8077 (diff) | |
download | cpython-1c17e7ff08bb93de07ce8554a59b7474442cf48c.zip cpython-1c17e7ff08bb93de07ce8554a59b7474442cf48c.tar.gz cpython-1c17e7ff08bb93de07ce8554a59b7474442cf48c.tar.bz2 |
Issue #28046: Fix the removal of the sysconfigdata module
from lib-dynload on install.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 8e97948..7ec7ee1 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -1302,8 +1302,6 @@ libinstall: build_all $(srcdir)/Modules/xxmodule.c 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 @@ sharedinstall: sharedmods --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 |