Changeset bd93ae1 for chapter08


Ignore:
Timestamp:
08/14/2023 06:53:30 PM (10 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
12.0, 12.0-rc1, 12.1, 12.1-rc1, multilib, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/update-glibc
Children:
2b17a82, 355efd1
Parents:
f7d3b6e (diff), 93ec8b3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunk

Location:
chapter08
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter08/binutils.xml

    rf7d3b6e rbd93ae1  
    154154    <para>Remove useless static libraries:</para>
    155155
    156 <screen><userinput remap="install">rm -fv /usr/lib/lib{bfd,ctf,ctf-nobfd,sframe,opcodes}.a</userinput></screen>
     156<screen><userinput remap="install">rm -fv /usr/lib/lib{bfd,ctf,ctf-nobfd,gprofng,opcodes,sframe}.a</userinput></screen>
    157157
    158158  </sect2>
     
    169169        <seg>addr2line, ar, as, c++filt, dwp, elfedit, gprof, gprofng, ld, ld.bfd, ld.gold, nm,
    170170        objcopy, objdump, ranlib, readelf, size, strings, and strip</seg>
    171         <seg>libbfd.so, libctf.so, libctf-nobfd.so, libopcodes.so, and libsframe.so</seg>
     171        <seg>libbfd.so, libctf.so, libctf-nobfd.so, libgprofng.so,
     172        libopcodes.so, and libsframe.so</seg>
    172173        <seg>/usr/lib/ldscripts</seg>
    173174      </seglistitem>
     
    417418      </varlistentry>
    418419
     420      <varlistentry id="libgprofng">
     421        <term><filename class="libraryfile">libgprofng</filename></term>
     422        <listitem>
     423          <para>A library containing most routines used by
     424          <command>gprofng</command></para>
     425          <indexterm zone="ch-system-binutils libgprofng">
     426            <primary sortas="c-libgprofng">libgprofng</primary>
     427          </indexterm>
     428        </listitem>
     429      </varlistentry>
     430
    419431      <varlistentry id="libopcodes">
    420432        <term><filename class="libraryfile">libopcodes</filename></term>
  • chapter08/coreutils.xml

    rf7d3b6e rbd93ae1  
    117117    user <systemitem class="username">tester</systemitem> a part of it:</para>
    118118
    119 <screen><userinput remap="test">echo "dummy:x:102:tester" &gt;&gt; /etc/group</userinput></screen>
     119<screen><userinput remap="test">groupadd -g 102 dummy -U tester</userinput></screen>
    120120
    121121    <para>Fix some of the permissions so that the non-&root; user can
     
    135135    <para>Remove the temporary group:</para>
    136136
    137 <screen><userinput remap="test">sed -i '/dummy/d' /etc/group</userinput></screen>
     137<screen><userinput remap="test">groupdel dummy</userinput></screen>
     138
    138139    <para>Install the package:</para>
    139140
  • chapter08/gawk.xml

    rf7d3b6e rbd93ae1  
    6262<screen><userinput remap="install">make LN='ln -f' install</userinput></screen>
    6363
    64     <para>The installation process already created <command>awk</command>
    65     as a symlink to <command>gawk</command>, create its man page as a
    66     symlink as well:</para>
    67 
    68 <screen><userinput remap="install">ln -sv gawk.1 /usr/share/man/man1/awk.1</userinput></screen>
    69 
    7064    <variablelist>
    7165      <title>The meaning of the overridden make variable:</title>
     
    7973      </varlistentry>
    8074   </variablelist>
     75
     76    <para>The installation process already created <command>awk</command>
     77    as a symlink to <command>gawk</command>, create its man page as a
     78    symlink as well:</para>
     79
     80<screen><userinput remap="install">ln -sv gawk.1 /usr/share/man/man1/awk.1</userinput></screen>
    8181
    8282    <para>If desired, install the documentation:</para>
  • chapter08/ncurses.xml

    rf7d3b6e rbd93ae1  
    159159    <para>If desired, install the Ncurses documentation:</para>
    160160
    161 <screen><userinput remap="install">mkdir -pv      /usr/share/doc/ncurses-&ncurses-version;
    162 cp -v -R doc/* /usr/share/doc/ncurses-&ncurses-version;</userinput></screen>
     161<screen><userinput remap="install">cp -v -R doc -T /usr/share/doc/ncurses-&ncurses-version;</userinput></screen>
    163162
    164163    <note>
Note: See TracChangeset for help on using the changeset viewer.