From: Ben Gras Date: Tue, 15 Aug 2006 15:59:04 +0000 (+0000) Subject: Force yacc to be /usr/bin/yacc, in case someone has /usr/local/bin/yacc X-Git-Tag: v3.1.3~201 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.ch12.html?a=commitdiff_plain;h=5a6052119f5a869dbd894011c76e78efdc10f45f;p=minix.git Force yacc to be /usr/bin/yacc, in case someone has /usr/local/bin/yacc (bison) before /usr/bin/yacc in $PATH --- diff --git a/commands/ash/Makefile b/commands/ash/Makefile index 20fa1c415..b444ace2f 100755 --- a/commands/ash/Makefile +++ b/commands/ash/Makefile @@ -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 $@