[Python-checkins] CVS: python/dist/src Makefile.in,1.94,1.95

Guido van Rossum python-dev@python.org
Sat, 12 Aug 2000 07:45:53 -0700


Update of /cvsroot/python/python/dist/src
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5129

Modified Files:
	Makefile.in 
Log Message:
Whoever added the Makefile rule to auto-build the Grammar didn't have
his build directory in a different place than his source directory.  I
do, and it is supposed to be supported.  The naive patch caused an
endless recursion in the Make process.  This should take care of that.



Index: Makefile.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.in,v
retrieving revision 1.94
retrieving revision 1.95
diff -C2 -r1.94 -r1.95
*** Makefile.in	2000/08/11 22:26:35	1.94
--- Makefile.in	2000/08/12 14:45:50	1.95
***************
*** 197,201 ****
  
  Grammar:
! 		cd Grammar ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
  			prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
  
--- 197,202 ----
  
  Grammar:
! 		P=`pwd`/Parser; cd $(srcdir)/Grammar; $(MAKE) PGENDIR=$$P \
! 			OPT="$(OPT)" VERSION="$(VERSION)" \
  			prefix="$(prefix)" exec_prefix="$(exec_prefix)" all