Changeset 3d92d63


Ignore:
Timestamp:
06/14/2020 03:24:09 PM (4 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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:
6e18f2f
Parents:
a4053b5b
Message:

Minor updates.

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter06/ncurses.xml

    ra4053b5b r3d92d63  
    107107
    108108      <varlistentry>
    109         <term><parameter>--enable-pc-files</parameter></term>
    110         <listitem>
    111           <para>This switch generates and installs .pc files for pkg-config.
    112           </para>
    113         </listitem>
    114       </varlistentry>
    115 
    116       <varlistentry>
    117109        <term><parameter>--without-normal</parameter></term>
    118110        <listitem>
     
    121113        </listitem>
    122114      </varlistentry>
    123       <!--
    124       <varlistentry>
    125         <term><parameter>- -disable-db-install</parameter></term>
    126         <listitem>
    127           <para>This switch disables building the terminfo database: it is not
    128           needed at this stage, and if <command>tic</command> is too old,
    129           it cannot compile recent databases.</para>
    130         </listitem>
    131       </varlistentry>
    132       -->
     115
    133116    </variablelist>
    134117
  • chapter07/stripping.xml

    ra4053b5b r3d92d63  
    108108
    109109  <sect2>
    110     <title>Backup / Restore</title>
     110    <title>Backup</title>
    111111
    112112    <para>
     
    142142      class="username">root</systemitem>'s home directory.
    143143    </para>
     144  </sect2>
     145
     146  <sect2>
     147    <title>Restore</title>
    144148
    145149    <para>
     
    153157    </para>
    154158
    155 <screen role="nodump" revision="sysv"><userinput>cd $LFS &amp;&amp;
     159<!-- Make the following look different so users don't blindly run the
     160     restore when they don't need to. -->
     161
     162<screen role="nodump" revision="sysv"><computeroutput>cd $LFS &amp;&amp;
    156163rm -rf ./* &amp;&amp;
    157 tar -xpf $HOME/lfs-temp-tools-&version;.tar.xz</userinput></screen>
     164tar -xpf $HOME/lfs-temp-tools-&version;.tar.xz</computeroutput></screen>
    158165
    159 <screen role="nodump" revision="systemd"><userinput>cd $LFS &amp;&amp;
     166<screen role="nodump" revision="systemd"><computeroutput>cd $LFS &amp;&amp;
    160167rm -rf ./* &amp;&amp;
    161 tar -xpf $HOME/lfs-temp-tools-&versiond;.tar.xz</userinput></screen>
     168tar -xpf $HOME/lfs-temp-tools-&versiond;.tar.xz</computeroutput></screen>
    162169
    163170    <para>
  • chapter08/automake.xml

    ra4053b5b r3d92d63  
    5454<screen><userinput remap="make">make</userinput></screen>
    5555
    56 <!--<para>There are a couple of tests that incorrectly link to the
    57     wrong version of the flex library, so we temporarily work around
    58     the problem.  Also, using the -j4 make option speeds up the tests, even on
    59     systems with only one processor, due to internal delays in individual
    60     tests.  To test the results, issue:</para>
    61  -->
    62 
    6356    <para> Using the -j4 make option speeds up the tests, even on systems with
    6457    only one processor, due to internal delays in individual tests.  To test
    6558    the results, issue:</para>
    6659
    67  <!--<screen><userinput remap="test">sed -i "s:./configure:LEXLIB=/usr/lib/libfl.a &amp;:" t/lex-{clean,depend}-cxx.sh
    68        make -j4 check</userinput></screen>-->
    69 
    7060<screen><userinput remap="test">make -j4 check</userinput></screen>
    71 
    72 
    73     <para>One test is known to fail in the LFS environment:
    74     tags-lisp-space.sh.</para>
    7561
    7662    <para>Install the package:</para>
  • chapter08/bison.xml

    ra4053b5b r3d92d63  
    4040  <sect2 role="installation">
    4141    <title>Installation of Bison</title>
    42 <!--
    43     <para>First, fix a build problem with the current version:</para>
    4442
    45 <screen><userinput remap="pre">sed -i '9327 s/mv/cp/' Makefile.in</userinput></screen>
    46 -->
    4743    <para>Prepare Bison for compilation:</para>
    4844
    4945<screen><userinput remap="configure">./configure --prefix=/usr --docdir=/usr/share/doc/bison-&bison-version;</userinput></screen>
    50 
    51 <!--  I could not find a race condidtion in the current version.
    52     <para>Compile the package, but work around a race condition in the
    53     current version:</para>
    54 
    55 <screen><userinput remap="make">make -j1</userinput></screen>-->
    5646
    5747    <para>Compile the package:</para>
     
    5949<screen><userinput remap="make">make</userinput></screen>
    6050
    61     <para>To test the results (about 5.5 SBU), issue:</para>
     51    <para>The tests are known to fail using multiple processors.
     52    To test the results (about 5.5 SBU), issue:</para>
    6253
    63 <screen><userinput remap="test">make check</userinput></screen>
    64 
    65     <para>Fourteen tests fail in the "Diagnostics" section, probably because of
    66     missing locales.</para>
    67 
    68 <!--
    69     <para>There is a circular dependency between bison and flex with regard to
    70     the checks.  If desired, after installing flex in the next section, the
    71     bison package can be rebuilt and the bison checks can be run with
    72     <command>make check</command>.</para>
    73 -->
     54<screen><userinput remap="test">make -j1 check</userinput></screen>
    7455
    7556    <para>Install the package:</para>
  • chapter08/shadow.xml

    ra4053b5b r3d92d63  
    6868    class="directory">/var/mail</filename> location used currently:</para>
    6969
    70 <screen><userinput remap="pre">
    71 sed -e 's:#ENCRYPT_METHOD DES:ENCRYPT_METHOD SHA512:' \
     70<screen><userinput remap="pre">sed -e 's:#ENCRYPT_METHOD DES:ENCRYPT_METHOD SHA512:' \
    7271    -e 's:/var/spool/mail:/var/mail:'                 \
    7372    -i etc/login.defs</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.