[Python-checkins] r71741 - python/branches/py3k/Makefile.pre.in
benjamin.peterson
python-checkins at python.org
Sun Apr 19 05:14:50 CEST 2009
Author: benjamin.peterson
Date: Sun Apr 19 05:14:50 2009
New Revision: 71741
Log:
make python3 alias in altbininstall
Modified:
python/branches/py3k/Makefile.pre.in
Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in (original)
+++ python/branches/py3k/Makefile.pre.in Sun Apr 19 05:14:50 2009
@@ -789,7 +789,6 @@
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 @@
fi; \
else true; \
fi
+ (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON)3)
# Install the manual page
maninstall:
More information about the Python-checkins
mailing list