aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorJeremy Huntwork <jhuntwork@linuxfromscratch.org>2007-08-08 05:04:07 +0000
committerJeremy Huntwork <jhuntwork@linuxfromscratch.org>2007-08-08 05:04:07 +0000
commit2cddf7e4d626835d837bb8a3f9f8de1e945d04ad (patch)
tree8d4099039e7db9a7d3335068a697462caa065f96 /chapter06
parent4f56afa39d82d98929f6fefdf6dc28d9514ff277 (diff)
Fix broken loops
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/jh/BOOK@8290 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/gzip.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter06/gzip.xml b/chapter06/gzip.xml
index 64a3910f4..2af109750 100644
--- a/chapter06/gzip.xml
+++ b/chapter06/gzip.xml
@@ -39,7 +39,7 @@
by Gzip is incompatible with the version that current
Glibc provides, so we'll rename the function:</para>
-<screen><userinput>for file gzip.c lib/utimens.{c,h} ; do \
+<screen><userinput>for file in gzip.c lib/utimens.{c,h} ; do \
cp -v $file{,.orig}
sed 's/futimens/gl_&amp;/' $file.orig &gt; $file
done</userinput></screen>