diff options
author | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-25 20:43:55 +0000 |
---|---|---|
committer | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-25 20:43:55 +0000 |
commit | 36c9927f027319dfc2c1cb3f376bb18f8cd54b0e (patch) | |
tree | 1edfe9141089976f0a234fb45533d76efe744355 | |
parent | 16a886a5656e52764a7a55cf775c65afdb0bb82a (diff) |
[Bug 138] add exec to yacc script
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1040 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter06/bison-inst.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter06/bison-inst.xml b/chapter06/bison-inst.xml index d196366f2..ba2f9bb13 100644 --- a/chapter06/bison-inst.xml +++ b/chapter06/bison-inst.xml @@ -20,7 +20,7 @@ following:</para> #!/bin/sh # Begin /usr/bin/yacc -/usr/bin/bison -y "$@" +exec /usr/bin/bison -y "$@" # End /usr/bin/yacc <userinput>EOF</userinput> |