From 83c258fce0de371938776aafe3341c34a20df8a8 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Sun, 27 Feb 2022 01:14:09 +0800 Subject: tcl: remove --enable-64bit It only adds -m64 on x86_64 GNU/Linux. In 64-bit LFS -m64 is the default. --- chapter08/tcl.xml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) (limited to 'chapter08') 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: -- cgit v1.2.3-54-g00ecf