[Python-checkins] python/dist/src Makefile.pre.in,1.128,1.129

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Fri, 13 Jun 2003 13:35:43 -0700


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

Modified Files:
	Makefile.pre.in 
Log Message:
Don't install Tools/idle any more.  We now install Tools/scripts/idle
from setup.py.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.128
retrieving revision 1.129
diff -C2 -d -r1.128 -r1.129
*** Makefile.pre.in	25 May 2003 22:01:31 -0000	1.128
--- Makefile.pre.in	13 Jun 2003 20:35:41 -0000	1.129
***************
*** 551,555 ****
  
  # Install everything
! install:	altinstall bininstall maninstall idleinstall
  
  # Install almost everything without disturbing previous versions
--- 551,555 ----
  
  # Install everything
! install:	altinstall bininstall maninstall
  
  # Install almost everything without disturbing previous versions
***************
*** 870,885 ****
  		DIRMODE=$(DIRMODE) FILEMODE=$(FILEMODE) \
  		srcdir=$(srcdir) builddir=. DESTDIR=$(DESTDIR)
- 
- # This installs IDLE
- idleinstall:
- 	SRCDIR=$(srcdir) $(RUNSHARED) \
- 	./$(BUILDPYTHON) $(srcdir)/Tools/idle/setup.py install \
- 	--check-tkinter \
- 	--prefix=$(prefix) \
- 	--install-purelib=$(LIBDEST) \
- 	--install-scripts=$(BINDIR) \
- 	--install-platlib=$(DESTSHARED) \
- 	--optimize=2 \
- 	--root=/$(DESTDIR)
  
  # This installs a few of the useful scripts in Tools/scripts
--- 870,873 ----