Ticket #2442: lfs-text-updates.patch

File lfs-text-updates.patch, 5.8 KB (added by chris@…, 15 years ago)

Text updates

  • trunk/BOOK/chapter01/how.xml

     
    2020
    2121  <para>As an alternative to installing a separate distribution onto your
    2222  machine, you may wish to use the Linux From Scratch LiveCD or a LiveCD from a
    23   commercial distribution.  The LFS LiveCD works well as a host system,
     23  commercial distribution. The LFS LiveCD works well as a host system,
    2424  providing all the tools you need to successfully follow the instructions in
    2525  this book. Unfortunately, development of the LiveCD has not progressed
    2626  recently and it only contains older versions of the source packages and
  • trunk/BOOK/chapter04/abouttestsuites.xml

     
    4141  number of failing tests. This may happen for several reasons, but the
    4242  most likely cause is that the host system does not have the
    4343  <systemitem class="filesystem">devpts</systemitem> file system set up
    44   correctly. This issue is discussed in greater detail in <xref
    45   linkend="chapter-temporary-tools"/>.</para>
     44  correctly. This issue is discussed in greater detail at
     45  <ulink url="&lfs-root;/lfs/faq.html#no-ptys"/>.</para>
    4646
    4747  <para>Sometimes package test suites will fail, but for reasons which the
    4848  developers are aware of and have deemed non-critical. Consult the logs located
  • trunk/BOOK/chapter05/perl.xml

     
    4343  <sect2 role="installation">
    4444    <title>Installation of Perl</title>
    4545
    46     <para>First apply a series of patches to address security issues and adapt some
    47     hard-wired paths to the C library by applying the following patch:</para>
     46    <para>First apply the following patch to address security issues and adapt
     47    some hard-wired paths to the C library:</para>
    4848
    4949<screen><userinput remap="pre">patch -Np1 -i ../&perl-consolidated-patch;</userinput></screen>
    5050
  • trunk/BOOK/chapter05/gcc-pass2.xml

     
    210210      <varlistentry>
    211211        <term><parameter>--disable-bootstrap</parameter></term>
    212212        <listitem>
    213           <para>For native builds of GCC, the default is to a "bootstrap" build.
    214           This does not just compile GCC, but compiles it several times. It
    215           uses the programs compiled in a first round to compile itself a
     213          <para>For native builds of GCC, the default is to do a "bootstrap"
     214          build. This does not just compile GCC, but compiles it several times.
     215          It uses the programs compiled in a first round to compile itself a
    216216          second time, and then again a third time.  The second and third
    217217          iterations are compared to make sure it can reproduce itself
    218218          flawlessly. This also implies that it was compiled correctly.
  • trunk/BOOK/chapter06/sysvinit.xml

     
    5555<screen><userinput remap="pre">sed -i 's@Sending processes@&amp; configured via /etc/inittab@g' \
    5656    src/init.c</userinput></screen>
    5757
    58     <para>A maintained version of the <command>wall</command> program is
    59     installed later on during the Util-linux-ng installation. Suppress the
    60     installation of this program and its man page:</para>
     58    <para>A maintained version of the <command>wall</command> program was
     59    installed earlier by Util-linux-ng. Suppress the installation of Sysvinit's
     60    version of this program and its man page:</para>
    6161
    6262<screen><userinput remap="make">sed -i -e 's/utmpdump wall/utmpdump/' \
    6363       -e 's/mountpoint.1 wall.1/mountpoint.1/' src/Makefile</userinput></screen>
  • trunk/BOOK/chapter06/vim.xml

     
    8585        <term><parameter>--enable-multibyte</parameter></term>
    8686        <listitem>
    8787          <para>This switch enables support for editing files in multibyte
    88           character encodings.  This is needed if using a locale with a
     88          character encodings. This is needed if using a locale with a
    8989          multibyte character set. This switch is also helpful to be able
    9090          to edit text files initially created in Linux distributions like
    91           Fedora Core that use UTF-8 as a default character set.</para>
     91          Fedora that use UTF-8 as a default character set.</para>
    9292        </listitem>
    9393      </varlistentry>
    9494
  • trunk/BOOK/chapter06/bison.xml

     
    4444
    4545<screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
    4646
    47     <para>The configure system causes bison to be built without support for
     47    <para>The configure system causes Bison to be built without support for
    4848    internationalization of error messages if a <command>bison</command>
    49     program is not already in $PATH.  The following addition will correct
     49    program is not already in $PATH. The following addition will correct
    5050    this:</para>
    5151
    5252<screen><userinput remap="configure">echo '#define YYENABLE_NLS 1' &gt;&gt; config.h</userinput></screen>