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
This commit is contained in:
Gerard Beekmans 2001-02-09 01:58:41 +00:00
parent 2c6bec982b
commit 417883205c

View File

@ -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>