Ignore:
Timestamp:
07/08/2020 07:36:00 PM (4 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib-10.1
Children:
48a69fc
Parents:
ad25331
Message:

Merge changes from trunk to multilib

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11997 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/ncurses.xml

    rad25331 r2505b8f  
    121121
    122122    <para>Install the package:</para>
    123 <!-- TODO: check and document -->
     123
    124124<screen><userinput remap="install">make DESTDIR=$LFS TIC_PATH=$(pwd)/build/progs/tic install
    125 ln -s libncursesw.so $LFS/usr/lib/libncurses.so</userinput></screen>
     125echo "INPUT(-lncursesw)" > $LFS/usr/lib/libncurses.so</userinput></screen>
     126
     127    <variablelist>
     128      <title>The meaning of the install options:</title>
     129
     130      <varlistentry>
     131        <term><parameter>TIC_PATH=$(pwd)/build/progs/tic</parameter></term>
     132        <listitem>
     133          <para>We need to pass the path of the just built
     134          <command>tic</command> able to run on the building machine, so that
     135          the terminal database can be created without errors.</para>
     136        </listitem>
     137      </varlistentry>
     138
     139      <varlistentry>
     140        <term><command>echo "INPUT(-lncursesw)" > $LFS/usr/lib/libncurses.so</command></term>
     141        <listitem>
     142          <para>The <filename>libncurses.so</filename> library is needed by
     143          a few packages we will build soon. We create this small linker
     144          script, as this is what is done in <xref
     145          linkend="chapter-building-system"/>.</para>
     146        </listitem>
     147      </varlistentry>
     148
     149    </variablelist>
    126150
    127151    <para>Move the shared libraries to the
Note: See TracChangeset for help on using the changeset viewer.