[Python-checkins] python/dist/src/Mac/OSX Makefile,1.23,1.24

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 30 Aug 2002 08:14:04 -0700


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

Modified Files:
	Makefile 
Log Message:
Fix for Jaguar: use ln for installing symlinks, install no longer works.
Fix for sh: use : in stead of an empty then clause in an if. 


Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSX/Makefile,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** Makefile	28 Aug 2002 21:27:01 -0000	1.23
--- Makefile	30 Aug 2002 15:14:02 -0000	1.24
***************
*** 22,26 ****
  DIRMODE=755
  INSTALL=/usr/bin/install -c
! INSTALL_SYMLINK=/usr/bin/install -l as
  INSTALL_PROGRAM=${INSTALL}
  INSTALL_SCRIPT= ${INSTALL_PROGRAM}
--- 22,26 ----
  DIRMODE=755
  INSTALL=/usr/bin/install -c
! INSTALL_SYMLINK=ln -fs
  INSTALL_PROGRAM=${INSTALL}
  INSTALL_SCRIPT= ${INSTALL_PROGRAM}
***************
*** 123,127 ****
  	
  install_IDE: $(INSTALLED_PYTHONW)
! 	@if $(INSTALLED_PYTHONW) -c "import waste"; then ; else \
  		echo PythonIDE needs the \"waste\" extension module; \
  		echo See Mac/OSX/README for details; \
--- 123,127 ----
  	
  install_IDE: $(INSTALLED_PYTHONW)
! 	@if $(INSTALLED_PYTHONW) -c "import waste"; then : ; else \
  		echo PythonIDE needs the \"waste\" extension module; \
  		echo See Mac/OSX/README for details; \