mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-19 11:49:20 +01:00
Fix issue building findutils on a 32bit system
This commit is contained in:
parent
4a74a6fd42
commit
f08c6def04
@ -45,7 +45,10 @@
|
|||||||
|
|
||||||
<para>Prepare Findutils for compilation:</para>
|
<para>Prepare Findutils for compilation:</para>
|
||||||
|
|
||||||
<screen><userinput remap="configure">./configure --prefix=/usr --localstatedir=/var/lib/locate</userinput></screen>
|
<screen><userinput remap="configure">case $(uname -m) in
|
||||||
|
i?86) TIME_T_32_BIT_OK=yes ./configure --prefix=/usr --localstatedir=/var/lib/locate ;;
|
||||||
|
x86_64) ./configure --prefix=/usr --localstatedir=/var/lib/locate ;;
|
||||||
|
esac</userinput></screen>
|
||||||
|
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<title>The meaning of the configure options:</title>
|
<title>The meaning of the configure options:</title>
|
||||||
|
Loading…
Reference in New Issue
Block a user