[Python-checkins] python/dist/src/Mac/OSX Makefile,1.32,1.33

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 28 Jan 2003 13:45:47 -0800


Update of /cvsroot/python/python/dist/src/Mac/OSX
In directory sc8-pr-cvs1:/tmp/cvs-serv13195

Modified Files:
	Makefile 
Log Message:
Install "python$(VERSION)" into /usr/local as the symlink to the framework,
and also create a symlink "python" pointing to "python$(VERSION)".
Fixes #675745.


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSX/Makefile,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** Makefile	30 Dec 2002 22:23:40 -0000	1.32
--- Makefile	28 Jan 2003 21:45:44 -0000	1.33
***************
*** 206,211 ****
  installunixtools: $(INSTALLED_PYTHON) $(INSTALLED_PYTHONW)
  	$(INSTALL) -d $(bindir)
! 	$(INSTALL_SYMLINK) $(INSTALLED_PYTHON) $(bindir)/python
  	echo "#!/bin/sh" > pythonw.sh
  	echo "exec \"$(INSTALLED_PYTHONW)\" \"\$$@\"" >> pythonw.sh
! 	$(INSTALL) pythonw.sh $(bindir)/pythonw
--- 206,213 ----
  installunixtools: $(INSTALLED_PYTHON) $(INSTALLED_PYTHONW)
  	$(INSTALL) -d $(bindir)
! 	$(INSTALL_SYMLINK) $(INSTALLED_PYTHON) $(bindir)/python$(VERSION)
! 	$(INSTALL_SYMLINK) python$(VERSION) $(bindir)/python
  	echo "#!/bin/sh" > pythonw.sh
  	echo "exec \"$(INSTALLED_PYTHONW)\" \"\$$@\"" >> pythonw.sh
! 	$(INSTALL) pythonw.sh $(bindir)/pythonw$(VERSION)
! 	$(INSTALL_SYMLINK) pythonw$(VERSION) $(bindir)/pythonw