diff --git a/chapter08/tcl.xml b/chapter08/tcl.xml
index 4e03f8625..41e4b80aa 100644
--- a/chapter08/tcl.xml
+++ b/chapter08/tcl.xml
@@ -63,24 +63,7 @@
SRCDIR=$(pwd)
cd unix
./configure --prefix=/usr \
- --mandir=/usr/share/man \
- $([ "$(uname -m)" = x86_64 ] && echo --enable-64bit)
-
-
- The meaning of the configure options:
-
-
- $([ "$(uname -m)" = x86_64 ] && echo --enable-64bit)
-
- The construct $(<shell command>)
- is replaced by the output of the shell command. Here this output is
- empty if running on a 32 bit machine, and is
- --enable-64bit if running on a 64 bit machine.
-
-
-
-
-
+ --mandir=/usr/share/man
Build the package: