From a3397c31f99bf9fef72af8b3549a2a594d80e4fb Mon Sep 17 00:00:00 2001 From: David Majda Date: Mon, 4 Jul 2016 09:03:09 +0200 Subject: [PATCH] Makefile: Fix bin/pegjs invocation It was broken since a57431955e75fd860e43402f43d7397a335696a8. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a1e2480..42a2380 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ parser: # tricky because the file is used when generating its own new version, which # means we can't start writing the header there until we call $(PEGJS). - $(PEGJS) $(PARSER_SRC_FILE) $(PARSER_OUT_FILE_NEW) + $(PEGJS) -o $(PARSER_OUT_FILE_NEW) $(PARSER_SRC_FILE) rm -f $(PARSER_OUT_FILE)