git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@131 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
@@ -70,8 +70,8 @@ installation.
</para></listitem>
<listitem><para>
-Chapter 6: Changed $* into $@ in the yacc script during bison's
-installation. $@ allows usage of quoted arguments with blanks.
+Chapter 6: Changed $* into "$@" in the yacc script during bison's
+installation. "$@" allows usage of quoted arguments with blanks.
</itemizedlist>
@@ -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>