diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-19 03:14:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-19 03:14:50 (GMT) |
commit | cee5663068a706b255de0ba45fe956ba6fb49ef2 (patch) | |
tree | a26638c2de5045770b0a23cc0e82cc0f335922e7 /Makefile.pre.in | |
parent | c50cb8e9c177fb5c97ea34ef73fe2f40bef0fb25 (diff) | |
download | cpython-cee5663068a706b255de0ba45fe956ba6fb49ef2.zip cpython-cee5663068a706b255de0ba45fe956ba6fb49ef2.tar.gz cpython-cee5663068a706b255de0ba45fe956ba6fb49ef2.tar.bz2 |
make python3 alias in altbininstall
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 0e7831f..784d256 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -789,7 +789,6 @@ bininstall: altbininstall then rm -f $(DESTDIR)$(BINDIR)/$(PYTHON); \ else true; \ fi - (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON)3) -rm -f $(DESTDIR)$(BINDIR)/python-config (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config) @@ -816,6 +815,7 @@ altbininstall: $(BUILDPYTHON) fi; \ else true; \ fi + (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON)3) # Install the manual page maninstall: |