Changeset f2ab0c5


Ignore:
Timestamp:
12/14/2021 12:39:01 PM (2 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, arm, bdubbs/gcc13, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
a844ebe9
Parents:
1ca2287
git-author:
Thomas Trepl <thomas@…> (11/03/2021 04:36:07 PM)
git-committer:
Pierre Labastie <pierre.labastie@…> (12/14/2021 12:39:01 PM)
Message:

Fix issue building findutils on a 32bit system

Cherry picked from the multilib branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/findutils.xml

    r1ca2287 rf2ab0c5  
    4646    <para>Prepare Findutils for compilation:</para>
    4747
    48 <screen><userinput remap="configure">./configure --prefix=/usr --localstatedir=/var/lib/locate</userinput></screen>
     48<screen><userinput remap="configure">case $(uname -m) in
     49    i?86)   TIME_T_32_BIT_OK=yes ./configure --prefix=/usr --localstatedir=/var/lib/locate ;;
     50    x86_64) ./configure --prefix=/usr --localstatedir=/var/lib/locate ;;
     51esac</userinput></screen>
    4952
    5053    <variablelist>
Note: See TracChangeset for help on using the changeset viewer.