aboutsummaryrefslogtreecommitdiffstats
path: root/chapter08
diff options
context:
space:
mode:
authorXi Ruoyao <xry111@mengyan1223.wang>2022-02-27 01:14:09 +0800
committerXi Ruoyao <xry111@mengyan1223.wang>2022-02-27 23:36:55 +0800
commit83c258fce0de371938776aafe3341c34a20df8a8 (patch)
tree8b3be98d630ed6b6de7f8f74823696a8ded1c66c /chapter08
parent459d4936aec6671d94a0a4be918d8efbbc130215 (diff)
tcl: remove --enable-64bit
It only adds -m64 on x86_64 GNU/Linux. In 64-bit LFS -m64 is the default.
Diffstat (limited to 'chapter08')
-rw-r--r--chapter08/tcl.xml19
1 files changed, 1 insertions, 18 deletions
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 @@
<screen><userinput remap="configure">SRCDIR=$(pwd)
cd unix
./configure --prefix=/usr \
- --mandir=/usr/share/man \
- $([ "$(uname -m)" = x86_64 ] &amp;&amp; echo --enable-64bit)</userinput></screen>
-
- <variablelist>
- <title>The meaning of the configure options:</title>
-
- <varlistentry>
- <term><parameter>$([ "$(uname -m)" = x86_64 ] &amp;&amp; echo --enable-64bit)</parameter></term>
- <listitem>
- <para>The construct <parameter>$(&lt;shell command&gt;)</parameter>
- is replaced by the output of the shell command. Here this output is
- empty if running on a 32 bit machine, and is
- <parameter>--enable-64bit</parameter> if running on a 64 bit machine.
- </para>
- </listitem>
- </varlistentry>
-
- </variablelist>
+ --mandir=/usr/share/man</userinput></screen>
<para>Build the package:</para>