Force yacc to be /usr/bin/yacc, in case someone has /usr/local/bin/yacc

(bison) before /usr/bin/yacc in $PATH
This commit is contained in:
Ben Gras 2006-08-15 15:59:04 +00:00
parent 8f7876b1d1
commit 5a6052119f

View File

@ -17,7 +17,7 @@ OBJS= alias.o builtins.o cd.o error.o eval.o exec.o expand.o histedit.o \
arith.o arith_lex.o
LEX=flex
YACC=yacc
YACC=/usr/bin/yacc
.c.o:
$(CC) $(CFLAGS) -c $< -o $@