[Python-checkins] CVS: python/dist/src Makefile.pre.in,1.40,1.41

Thomas Wouters twouters@users.sourceforge.net
Thu, 19 Jul 2001 02:34:11 -0700


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

Modified Files:
	Makefile.pre.in 
Log Message:

Avoid the use of 'unset', which isn't available on all platforms. Fixes SF
bug #442627.



Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -r1.40 -r1.41
*** Makefile.pre.in	2001/06/19 15:00:23	1.40
--- Makefile.pre.in	2001/07/19 09:34:09	1.41
***************
*** 287,291 ****
  # Build the shared modules
  sharedmods: $(PYTHON)
! 	unset PYTHONPATH PYTHONHOME PYTHONSTARTUP; \
  		./$(PYTHON) $(srcdir)/setup.py build
  
--- 287,291 ----
  # Build the shared modules
  sharedmods: $(PYTHON)
! 	PYTHONPATH= PYTHONHOME= PYTHONSTARTUP= \
  		./$(PYTHON) $(srcdir)/setup.py build