Changed $@ into "$@" (with quotes)

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@131 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans 2001-02-09 12:29:42 +00:00
parent 135ea89dc1
commit 59f9e2d321
2 changed files with 3 additions and 3 deletions

View File

@ -70,8 +70,8 @@ installation.
</para></listitem> </para></listitem>
<listitem><para> <listitem><para>
Chapter 6: Changed $* into $@ in the yacc script during bison's Chapter 6: Changed $* into "$@" in the yacc script during bison's
installation. $@ allows usage of quoted arguments with blanks. installation. "$@" allows usage of quoted arguments with blanks.
</para></listitem> </para></listitem>
</itemizedlist> </itemizedlist>

View File

@ -33,7 +33,7 @@ following:
#!/bin/sh #!/bin/sh
# Begin /usr/bin/yacc # Begin /usr/bin/yacc
/usr/bin/bison -y $@ /usr/bin/bison -y "$@"
# End /usr/bin/yacc # End /usr/bin/yacc
<userinput>EOF</userinput> <userinput>EOF</userinput>