File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -36,11 +36,13 @@ OBJS = acl.o amutils.o arrayfuncs.o array_expanded.o array_selfuncs.o \
3636jsonpath_scan.c : FLEXFLAGS = -CF -p -p
3737jsonpath_scan.c : FLEX_NO_BACKUP=yes
3838
39- # Force these dependencies to be known even without dependency info built:
39+ # jsonpath_scan is compiled as part of jsonpath_gram
4040jsonpath_gram.o : jsonpath_scan.c
4141
4242# jsonpath_gram.c and jsonpath_scan.c are in the distribution tarball,
4343# so they are not cleaned here.
44+ clean distclean maintainer-clean :
45+ rm -f lex.backup
4446
4547like.o : like.c like_match.c
4648
Original file line number Diff line number Diff line change @@ -478,7 +478,7 @@ parsejsonpath(const char *str, int len)
478478 jsonpath_scanner_init (str, len);
479479
480480 if (jsonpath_yyparse ((void *) &parseresult) != 0 )
481- jsonpath_yyerror (NULL , " bugus input" );
481+ jsonpath_yyerror (NULL , " bogus input" ); /* shouldn't happen */
482482
483483 jsonpath_scanner_finish ();
484484
You can’t perform that action at this time.
0 commit comments