bpo-36747: Remove the stale scriptsinstall Makefile target (GH-13003)
authorxdegaye <xdegaye@gmail.com>
Mon, 29 Apr 2019 09:01:42 +0000 (11:01 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 29 Apr 2019 09:01:42 +0000 (11:01 +0200)
Makefile.pre.in
Misc/NEWS.d/next/Build/2019-04-29-09-57-20.bpo-36747.1YEyu-.rst [new file with mode: 0644]

index 7f0d8d44b3d1727be801bf98a2d0df1486cf0c38..619e3fb3645e23fba3fea06fb00ef92719259aab 100644 (file)
@@ -1653,14 +1653,6 @@ frameworkaltinstallunixtools:
 frameworkinstallextras:
        cd Mac && $(MAKE) installextras DESTDIR="$(DESTDIR)"
 
-# This installs a few of the useful scripts in Tools/scripts
-scriptsinstall:
-       SRCDIR=$(srcdir) $(RUNSHARED) \
-       $(PYTHON_FOR_BUILD) $(srcdir)/Tools/scripts/setup.py install \
-       --prefix=$(prefix) \
-       --install-scripts=$(BINDIR) \
-       --root=$(DESTDIR)/
-
 # Build the toplevel Makefile
 Makefile.pre: $(srcdir)/Makefile.pre.in config.status
        CONFIG_FILES=Makefile.pre CONFIG_HEADERS= $(SHELL) config.status
diff --git a/Misc/NEWS.d/next/Build/2019-04-29-09-57-20.bpo-36747.1YEyu-.rst b/Misc/NEWS.d/next/Build/2019-04-29-09-57-20.bpo-36747.1YEyu-.rst
new file mode 100644 (file)
index 0000000..dd5a008
--- /dev/null
@@ -0,0 +1 @@
+Remove the stale scriptsinstall Makefile target.