ext/json/parser/prereq.mk: keep line numbers of ext/json/parser/parser.c

Follow up of 5717e55e9a.
Adding a header with newline broke linenos.
This commit is contained in:
Yusuke Endoh 2019-10-05 17:54:36 +09:00
Родитель 3e3cc0885a
Коммит 70e3fda2eb
2 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,4 @@
/* This file is automatically generated from parser.rl by using ragel */
#line 1 "parser.rl"
#include "../fbuffer/fbuffer.h"
#include "parser.h"

Просмотреть файл

@ -6,6 +6,6 @@ RAGEL = ragel
$(RAGEL) -G2 $<
$(BASERUBY) -pli -e '$$_.sub!(/[ \t]+$$/, "")' \
-e '$$_.sub!(/^static const int (JSON_.*=.*);$$/, "enum {\\1};")' \
-e '$$header ||= $$_ = "/* This file is automatically generated from parser.rl by using ragel */\n" + $$_' $@
-e '$$header ||= $$_ = "/* This file is automatically generated from parser.rl by using ragel */" + $$_' $@
parser.c: