Changeset 7b7733d for chapter08


Ignore:
Timestamp:
06/27/2023 09:00:35 PM (16 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
xry111/clfs-ng
Children:
d58da4b
Parents:
f0ebf5c (diff), 0fe3bb0 (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 remote-tracking branch 'origin/trunk' into xry111/clfs-ng

Location:
chapter08
Files:
1 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • chapter08/chapter08.xml

    rf0ebf5c r7b7733d  
    3030  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="expect.xml"/>
    3131  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="dejagnu.xml"/>
    32 
    3332  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="binutils.xml"/>
    3433  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gmp.xml"/>
     
    4039  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="shadow.xml"/>
    4140  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="gcc.xml"/>
    42   <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="pkgconfig.xml"/>
     41  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="pkgconf.xml"/>
    4342  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="ncurses.xml"/>
    4443  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="sed.xml"/>
  • chapter08/flex.xml

    rf0ebf5c r7b7733d  
    7474    programs, create a symbolic link named <filename>lex</filename> that
    7575    runs <filename>flex</filename> in <command>lex</command> emulation
    76     mode:</para>
     76    mode, and also create the man page of <command>lex</command> as a
     77    symlink:</para>
    7778
    78 <screen><userinput remap="install">ln -sv flex /usr/bin/lex</userinput></screen>
     79<screen><userinput remap="install">ln -sv flex   /usr/bin/lex
     80ln -sv flex.1 /usr/share/man/man1/lex.1</userinput></screen>
    7981
    8082  </sect2>
  • chapter08/gawk.xml

    rf0ebf5c r7b7733d  
    6161
    6262<screen><userinput remap="install">make LN='ln -f' install</userinput></screen>
     63
     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>
    6369
    6470    <variablelist>
  • chapter08/gcc.xml

    rf0ebf5c r7b7733d  
    215215
    216216<screen><userinput remap="install">ln -svr /usr/bin/cpp /usr/lib</userinput></screen>
    217   <!-- already done earlier
     217
    218218    <para>Many packages use the name <command>cc</command> to call the C
    219     compiler. To satisfy those packages, create a symlink:</para>
    220 
    221 <screen><userinput remap="install">ln -sv gcc /usr/bin/cc</userinput></screen>
    222   -->
     219    compiler.  We've already created <command>cc</command> as a symlink in
     220    <xref linkend='ch-tools-gcc-pass2'/>, create its man page as a symlink
     221    as well:</para>
     222
     223<screen><userinput remap="install">ln -sv gcc.1 /usr/share/man/man1/cc.1</userinput></screen>
     224
    223225    <para>Add a compatibility symlink to enable building programs with
    224226    Link Time Optimization (LTO):</para>
Note: See TracChangeset for help on using the changeset viewer.