From 5a6052119f5a869dbd894011c76e78efdc10f45f Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 15 Aug 2006 15:59:04 +0000 Subject: [PATCH] Force yacc to be /usr/bin/yacc, in case someone has /usr/local/bin/yacc (bison) before /usr/bin/yacc in $PATH --- commands/ash/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 $@ -- 2.44.0