From 59f9e2d3212f2926a78c4e79de2f6c1e85327b80 Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Fri, 9 Feb 2001 12:29:42 +0000 Subject: [PATCH] Changed $@ into "$@" (with quotes) git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@131 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter01/changelog.sgml | 4 ++-- chapter06/bison-inst.sgml | 2 +- 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. -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. 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 EOF