Changeset fe039b5


Ignore:
Timestamp:
07/06/2020 08:47:01 PM (4 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 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, ml-11.0, 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:
3ed6a2d
Parents:
b6c0d12
Message:

Match ncurses chapter 6 to what is done in chapter 8, and add explanations

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11994 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rb6c0d12 rfe039b5  
    4444    -->
    4545    <listitem>
     46      <para>2020-07-06</para>
     47      <itemizedlist>
     48        <listitem>
     49          <para>[pierre] - Change chapter 6 ncurses so that it matches
     50          what is done in chapter 8, and add explanations.</para>
     51        </listitem>
     52      </itemizedlist>
     53    </listitem>
     54
     55    <listitem>
    4656      <para>2020-07-04</para>
    4757      <itemizedlist>
  • chapter06/ncurses.xml

    rb6c0d12 rfe039b5  
    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
  • general.ent

    rb6c0d12 rfe039b5  
    1 <!ENTITY version         "SVN-20200704">
     1<!ENTITY version         "SVN-20200706">
    22<!ENTITY short-version   "svn">  <!-- Used below in &blfs-book;
    33                                      Change to x.y for release but not -rc releases -->
    44<!ENTITY generic-version "development"> <!-- Use "development"  or "x.y[-pre{x}]" -->
    55
    6 <!ENTITY versiond        "20200704-systemd">
     6<!ENTITY versiond        "20200706-systemd">
    77<!ENTITY short-versiond  "systemd">
    88<!ENTITY generic-versiond "systemd">
    99
    10 <!ENTITY releasedate     "July 4th, 2020">
     10<!ENTITY releasedate     "July 6th, 2020">
    1111
    1212<!ENTITY copyrightdate   "1999-2020"><!-- jhalfs needs a literal dash, not &ndash; -->
Note: See TracChangeset for help on using the changeset viewer.