diff options
author | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2007-08-08 05:04:07 +0000 |
---|---|---|
committer | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2007-08-08 05:04:07 +0000 |
commit | 2cddf7e4d626835d837bb8a3f9f8de1e945d04ad (patch) | |
tree | 8d4099039e7db9a7d3335068a697462caa065f96 /chapter06 | |
parent | 4f56afa39d82d98929f6fefdf6dc28d9514ff277 (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.xml | 2 |
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_&/' $file.orig > $file done</userinput></screen> |