diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-09 01:58:41 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-09 01:58:41 +0000 |
commit | 417883205cc0745f8e421a29326cedf786ef01e2 (patch) | |
tree | ea634fe83fbe531045c380a508232fdce33219a8 | |
parent | 2c6bec982b424fa8ea9807e6bd7a605a070255a3 (diff) |
Changed $* into $@ - $@ is needed when quoted arguments with blanks are used
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@127 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter06/bison-inst.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter06/bison-inst.sgml b/chapter06/bison-inst.sgml index 51c2231e4..dd620f66b 100644 --- a/chapter06/bison-inst.sgml +++ b/chapter06/bison-inst.sgml @@ -33,7 +33,7 @@ following: #!/bin/sh # Begin /usr/bin/yacc -/usr/bin/bison -y $* +/usr/bin/bison -y $@ # End /usr/bin/yacc <userinput>EOF</userinput> |