Changeset f2243a5 for chapter06


Ignore:
Timestamp:
10/15/2003 10:39:38 PM (21 years ago)
Author:
Alex Gronenwoud <alex@…>
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, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, 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:
f9bb38a
Parents:
8f75224
Message:

Mixed modifications.

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

Location:
chapter06
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter06/lfs-utils-inst.xml

    r8f75224 rf2243a5  
    1515their destination:</para>
    1616
    17 <screen><userinput>cp -f etc/{services,protocols} /etc</userinput></screen>
     17<screen><userinput>cp etc/{services,protocols} /etc</userinput></screen>
    1818
    1919<para>The <filename>/etc/services</filename> file is used to resolve service
  • chapter06/nettools-inst.xml

    r8f75224 rf2243a5  
    1414but it's up to the kernel to make the protocols available.</para>
    1515
    16 <para>The following patch will fix a small syntax problem with the source
    17 for the mii-tool binary:</para>
     16<para>First fix a small syntax problem in the sources of the mii-tool
     17program:</para>
    1818
    1919<screen><userinput>patch -Np1 -i ../&net-tools-mii-patch;</userinput></screen>
    2020
    21 <para>Prepare Net-tools for compilation with:</para>
     21<para>Now prepare Net-tools for compilation with:</para>
    2222
    2323<screen><userinput>make config</userinput></screen>
  • chapter06/patch-inst.xml

    r8f75224 rf2243a5  
    77
    88<screen><userinput>CPPFLAGS=-D_GNU_SOURCE ./configure --prefix=/usr</userinput></screen>
     9
     10<para>Again, the preprocessor flag <userinput>-D_GNU_SOURCE</userinput> is only
     11needed on the PowerPC platform. On other architectures you can leave it out.</para>
    912
    1013<para>Compile the package:</para>
  • chapter06/procinfo-inst.xml

    r8f75224 rf2243a5  
    88<screen><userinput>make LDLIBS=-lncurses</userinput></screen>
    99
    10 <para>The <emphasis>-lncurses</emphasis> switch overwrites the
    11 default switch, <emphasis>-ltermcap</emphasis>. This is done
    12 because libtermcap is declared obsolete in favor of libncurses.</para>
     10<para>The meaning of the make parameter:</para>
     11<itemizedlist>
     12<listitem><para><userinput>LDLIBS=-lncurses</userinput>: This tells Procinfo
     13to use the <filename>libncurses</filename> library instead of  the
     14long-obsolete <filename>libtermcap</filename>.</para></listitem>
     15</itemizedlist>
    1316
    1417<para>And install the package:</para>
Note: See TracChangeset for help on using the changeset viewer.