yardcat wrote on 01-12-06 17:17:

I'm building LFS 6.2 on another i386 box using PC Linux as host and everything has been going fine until running make in the compilation of - 5.14.Bash-3.1. I get this error;

lfs:/mnt/lfs/sources/bash-3.1$ make
yacc -d ./parse.y
make: yacc: Command not found
make: *** [y.tab.c] Error 127

I haven't a clue, as far as I can tell the configure step went fine.
thanks, Arden

Traditionally you could always get away with this little
script, save as /usr/local/bin/yacc, and chmod 755:

#!/bin/sh
BISON=`which bison`
exec $BISON -y "$@"


bjd
--
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to