]> Zhao Yanbai Git Server - minix.git/commitdiff
Force yacc to be /usr/bin/yacc, in case someone has /usr/local/bin/yacc
authorBen Gras <ben@minix3.org>
Tue, 15 Aug 2006 15:59:04 +0000 (15:59 +0000)
committerBen Gras <ben@minix3.org>
Tue, 15 Aug 2006 15:59:04 +0000 (15:59 +0000)
(bison) before /usr/bin/yacc in $PATH

commands/ash/Makefile

index 20fa1c41594650521ba2aa4185f71d0d44c8c364..b444ace2fc7776379a4e1e886a51d25a8b21c7f7 100755 (executable)
@@ -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 $@