Jelajahi Sumber

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 24 tahun lalu
induk
melakukan
417883205c
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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>