mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-03-06 06:14:47 +00:00
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:
parent
135ea89dc1
commit
59f9e2d321
@ -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.
|
||||
</para></listitem>
|
||||
|
||||
</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>
|
||||
|
Loading…
Reference in New Issue
Block a user