[lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Alexander Spitzer
Hello all, I am on section 5.15.1 (installing bash) on LFS version 7.2 and I am receiving an error after running make: $ make -j yacc -d ./parse.y make: execvp: yacc: Permission denied make: *** [y.tab.c] Error 127 I have encountered this before and I attempted to get around by sudo, but that

Re: [lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Chris Staub
On 12/15/2012 02:58 AM, Alexander Spitzer wrote: Hello all, I am on section 5.15.1 (installing bash) on LFS version 7.2 and I am receiving an error after running make: $ make -j yacc -d ./parse.y make: execvp: yacc: Permission denied make: *** [y.tab.c] Error 127 I have encountered this

Re: [lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Chris Staub
On 12/15/2012 03:03 AM, Alexander Spitzer wrote: An additional piece of information that might be important: The patch asked for in the book is bash-4.2-fixes-8.patch while the one I have from the website and that one that I applied is bash-4.2-fixes-10.patch Could that be the cause of the

Re: [lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Alexander Spitzer
Hi Chris, Thanks for your reply. ls -l /usr/bin/yacc gives: -rw-r--r-- 1 root root 41 Dec 13 19:13 /usr/bin/yacc -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page

Re: [lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Chris Staub
On 12/15/2012 03:11 AM, Alexander Spitzer wrote: Hi Chris, Thanks for your reply. ls -l /usr/bin/yacc gives: -rw-r--r-- 1 root root 41 Dec 13 19:13 /usr/bin/yacc That explains it, that script is not executable. chmod a+x /usr/bin/yacc and it should work. --

Re: [lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Alexander Spitzer
On Sat, Dec 15, 2012 at 3:10 AM, Chris Staub ch...@beaker67.com wrote: On 12/15/2012 03:03 AM, Alexander Spitzer wrote: An additional piece of information that might be important: The patch asked for in the book is bash-4.2-fixes-8.patch while the one I have from the website and that one

Re: [lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Alexander Spitzer
It worked! Thank you so much! For reference I also had to edit /usr/bin/yacc to exec '/usr/local/bin/bison' -y $@ since there was no bison at all in /usr/bin On Sat, Dec 15, 2012 at 3:15 AM, Chris Staub ch...@beaker67.com wrote: On 12/15/2012 03:11 AM, Alexander Spitzer wrote: Hi Chris,

Re: [lfs-support] Installation of Bash 5.15 Error on make

2012-12-15 Thread Alexander Spitzer
I am definitely using the development source while reading 7.2 :X This might be why check didn't build smoothly. I'll carry on for now but if I encounter any weird problems I'll know why. On Sat, Dec 15, 2012 at 3:27 AM, Chris Staub ch...@beaker67.com wrote: On 12/15/2012 03:18 AM, Alexander