Kaydet (Commit) b16b8353 authored tarafından Guido van Rossum's avatar Guido van Rossum

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.
üst 4ca744c7
......@@ -196,7 +196,8 @@ libpython$(VERSION).dylib: $(LIBRARY)
$(SUBDIRS): Makefiles
Grammar:
cd Grammar ; $(MAKE) OPT="$(OPT)" VERSION="$(VERSION)" \
P=`pwd`/Parser; cd $(srcdir)/Grammar; $(MAKE) PGENDIR=$$P \
OPT="$(OPT)" VERSION="$(VERSION)" \
prefix="$(prefix)" exec_prefix="$(exec_prefix)" all
Parser:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment