[Python-checkins] CVS: python/dist/src/Mac/OSX sample_sitecustomize.py,NONE,1.1 Makefile,1.5,1.6

Jack Jansen jackjansen@users.sourceforge.net
Fri, 18 Jan 2002 08:12:29 -0800


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

Modified Files:
	Makefile 
Added Files:
	sample_sitecustomize.py 
Log Message:
Added a note that you have to add Mac/Lib to sys.path after doing
a "make installmacsubtree".


--- NEW FILE: sample_sitecustomize.py ---
import sys
import os
_maclib = os.path.join(sys.prefix, 'Mac/Lib')
sys.path.append(_maclib)
Index: Makefile
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/OSX/Makefile,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Makefile	2002/01/15 23:20:40	1.5
--- Makefile	2002/01/18 16:12:27	1.6
***************
*** 138,139 ****
--- 138,142 ----
  		done; \
  	done
+ 	@echo '** Copy the contents of sample_sitecustomize.py (or similar code) into'
+ 	@echo '**' $(INSTALLDIR)/lib/python2.2/sitecustomize.py
+