From: Victor Stinner Date: Tue, 28 Dec 2010 23:14:17 +0000 (+0000) Subject: Don't ignore pgen error (on "make Parser/pgen.stamp") X-Git-Tag: v3.2rc1~292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e1c0c7c7b2d43b34e549492b44e84d5f25bd0144;p=python Don't ignore pgen error (on "make Parser/pgen.stamp") --- diff --git a/Makefile.pre.in b/Makefile.pre.in index aa6d3a8834..3a179f6145 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -577,7 +577,7 @@ $(IO_OBJS): $(IO_H) $(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)