aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2001-02-09 12:29:42 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2001-02-09 12:29:42 +0000
commit59f9e2d3212f2926a78c4e79de2f6c1e85327b80 (patch)
tree8fb144351d320ae0f3350609376e5ae8543f3f5d
parent135ea89dc1d2efda30596a07b98b18b4f5908712 (diff)
Changed $@ into "$@" (with quotes)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@131 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter01/changelog.sgml4
-rw-r--r--chapter06/bison-inst.sgml2
2 files changed, 3 insertions, 3 deletions
diff --git a/chapter01/changelog.sgml b/chapter01/changelog.sgml
index 6e493c5cc..d890c61fb 100644
--- a/chapter01/changelog.sgml
+++ b/chapter01/changelog.sgml
@@ -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>
diff --git a/chapter06/bison-inst.sgml b/chapter06/bison-inst.sgml
index dd620f66b..6d44ec182 100644
--- a/chapter06/bison-inst.sgml
+++ b/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>