Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/findutils.xml

    r6ca1bb6 r4b4f934  
    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>
    5154      <title>The meaning of the configure options:</title>
     55
     56      <varlistentry>
     57        <term><command>TIME_32_BIT_OK=yes</command></term>
     58        <listitem>
     59          <para>This setting is needed for building on a 32 bit system.</para>
     60        </listitem>
     61      </varlistentry>
    5262
    5363      <varlistentry>
Note: See TracChangeset for help on using the changeset viewer.