From: Bruce Cran Date: Wed, 15 Oct 2014 20:16:35 +0000 (-0600) Subject: BSD Yacc doesn't understand --no-lines, so use -l instead X-Git-Tag: fio-2.1.14~50 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=0f9940ad60550da5198e2d1e63e11803f5aef914 BSD Yacc doesn't understand --no-lines, so use -l instead Signed-off-by: Jens Axboe --- diff --git a/Makefile b/Makefile index 0f77df99..55a93fc2 100644 --- a/Makefile +++ b/Makefile @@ -276,7 +276,7 @@ y.tab.o: y.tab.c y.tab.h $(QUIET_CC)$(CC) -o $@ $(CFLAGS) $(CPPFLAGS) -c $< y.tab.c: exp/expression-parser.y - $(QUIET_YACC)$(YACC) --no-lines -d -b y exp/expression-parser.y + $(QUIET_YACC)$(YACC) -l -d -b y exp/expression-parser.y y.tab.h: y.tab.c