Parcourir la source

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
Gerard Beekmans il y a 24 ans
Parent
commit
417883205c
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      chapter06/bison-inst.sgml

+ 1 - 1
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>