[Python-checkins] r87558 - python/branches/py3k/Makefile.pre.in

victor.stinner python-checkins at python.org
Wed Dec 29 00:14:17 CET 2010


Author: victor.stinner
Date: Wed Dec 29 00:14:17 2010
New Revision: 87558

Log:
Don't ignore pgen error (on "make Parser/pgen.stamp")

Modified:
   python/branches/py3k/Makefile.pre.in

Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Wed Dec 29 00:14:17 2010
@@ -577,7 +577,7 @@
 $(GRAMMAR_H) $(GRAMMAR_C): Parser/pgen.stamp
 Parser/pgen.stamp: $(PGEN) $(GRAMMAR_INPUT)
 		-@$(INSTALL) -d Include
-		-$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
+		$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
 		-touch Parser/pgen.stamp
 
 $(PGEN):	$(PGENOBJS)


More information about the Python-checkins mailing list