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

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


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

Modified Files:
      Tag: release21-maint
	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.35
retrieving revision 1.35.2.1
diff -C2 -r1.35 -r1.35.2.1
*** Makefile.pre.in	2001/04/14 17:57:07	1.35
--- Makefile.pre.in	2001/07/19 09:28:24	1.35.2.1
***************
*** 283,287 ****
  # Build the shared modules
  sharedmods: $(PYTHON)
! 	PYTHONPATH= ./$(PYTHON) $(srcdir)/setup.py build
  
  # buildno should really depend on something like LIBRARY_SRC
--- 283,288 ----
  # Build the shared modules
  sharedmods: $(PYTHON)
! 	PYTHONPATH= PYTHONHOME= PYTHONSTARTUP= \
! 		./$(PYTHON) $(srcdir)/setup.py build
  
  # buildno should really depend on something like LIBRARY_SRC