diff options
author | Tarek Ziade <tarek@ziade.org> | 2011-05-31 08:31:50 +0200 |
---|---|---|
committer | Tarek Ziade <tarek@ziade.org> | 2011-05-31 08:31:50 +0200 |
commit | 90fb9283fc342339ef6687d4927d3b74b2b73ecd (patch) | |
tree | 15141e8859ea11d0446db03525b49450ef622f46 | |
parent | cccfd9932dcbf808ca3b3e2c494799dfab4ae074 (diff) | |
download | cpython-git-90fb9283fc342339ef6687d4927d3b74b2b73ecd.tar.gz |
promoted pysetup3 to a top-level script
-rw-r--r-- | Makefile.pre.in | 2 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index dff1252999..f6ecacf307 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -888,6 +888,8 @@ bininstall: altbininstall (cd $(DESTDIR)$(BINDIR); $(LN) -s pydoc$(VERSION) pydoc3) -rm -f $(DESTDIR)$(BINDIR)/2to3 (cd $(DESTDIR)$(BINDIR); $(LN) -s 2to3-$(VERSION) 2to3) + -rm -f $(DESTDIR)$(BINDIR)/pysetup3 + (cd $(DESTDIR)$(BINDIR); $(LN) -s pysetup$(VERSION) pysetup3) # Install the manual page maninstall: @@ -1889,7 +1889,7 @@ def main(): # check the PyBuildScripts command above, and change the links # created by the bininstall target in Makefile.pre.in scripts = ["Tools/scripts/pydoc3", "Tools/scripts/idle3", - "Tools/scripts/2to3"] + "Tools/scripts/2to3", "Tools/scripts/pysetup3"] ) # --install-platlib |