[Python-checkins] CVS: distutils/doc/inst inst.tex,1.13,1.14

Greg Ward python-dev@python.org
Mon, 29 May 2000 20:00:46 -0700


Update of /cvsroot/python/distutils/doc/inst
In directory slayer.i.sourceforge.net:/tmp/cvs-serv16360

Modified Files:
	inst.tex 
Log Message:
Added concrete example of when separate build and install might be
useful (suggested by Moshe Zadka).

Index: inst.tex
===================================================================
RCS file: /cvsroot/python/distutils/doc/inst/inst.tex,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** inst.tex	2000/04/28 17:12:22	1.13
--- inst.tex	2000/05/30 03:00:43	1.14
***************
*** 199,203 ****
  fell swoop.  If you prefer to work incrementally---especially useful if
  you want to customize the build process, or if things are going
! wrong---you can use the setup script to do one thing at a time.
  
  For example, you can build everything in one step, and then install
--- 199,207 ----
  fell swoop.  If you prefer to work incrementally---especially useful if
  you want to customize the build process, or if things are going
! wrong---you can use the setup script to do one thing at a time.  This is
! particularly helpful when the build and install will be done by
! different users---e.g., you might want to build a module distribution
! and hand it off to a system administrator for installation (or do it
! yourself, with super-user privileges).
  
  For example, you can build everything in one step, and then install