aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Huntwork <jhuntwork@linuxfromscratch.org>2007-10-06 18:57:15 +0000
committerJeremy Huntwork <jhuntwork@linuxfromscratch.org>2007-10-06 18:57:15 +0000
commit8c3423002cbf21db4016d4044f8d6441752f996a (patch)
treed5608cb679d3e0328682b7249cbebc71c5d3fc12
parentecdeed26b6851feecf847017059799c26ae3be45 (diff)
Fixed rogue 'done' in case statement.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/jh/BOOK@8403 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r--chapter06/glibc.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml
index 7823a3ee6..854abc68b 100644
--- a/chapter06/glibc.xml
+++ b/chapter06/glibc.xml
@@ -108,7 +108,7 @@ cd ../glibc-build</userinput></screen>
<screen><userinput remap="configure">case `uname -m` in
i?86) echo "CFLAGS += -march=i486 -mtune=native" &gt; configparms ;;
-done</userinput></screen>
+esac</userinput></screen>
<para>Prepare Glibc for compilation:</para>