Changeset 4a88065


Ignore:
Timestamp:
01/11/2003 05:41:17 PM (21 years ago)
Author:
Gerard Beekmans <gerard@…>
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, v4_1, 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:
0416698d
Parents:
a1d3af6
Message:

reworded for consistency

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

Files:
1 added
12 edited

Legend:

Unmodified
Added
Removed
  • appendixa/gawk-dep.xml

    ra1d3af6 r4a88065  
     1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
     2
    13<sect2>
    24<title>Gawk Installation Dependencies</title>
  • appendixa/gawk-desc.xml

    ra1d3af6 r4a88065  
    1 <sect2><title>Contents of Gawk</title>
     1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
     2
     3<sect2><title>Descriptions</title>
    24
    35<para>Last checked against version &gawk-contversion;.</para>
    46
    5 <sect3><title>Program Files</title>
    6 <para>awk, gawk, gawk-3.1.1, grcat, igawk, pgawk, pgawk-3.1.1,
    7 pwcat</para></sect3>
    8 
    9 <sect3><title>Descriptions</title>
     7<sect3><title>Program files descriptions</title>
    108
    119<sect4><title>awk</title>
     
    1311
    1412<sect4><title>gawk, gawk-3.1.1</title>
    15 <para>gawk is the GNU implementation of awk,
    16 a pattern scanning and processing language.</para></sect4>
     13<para>gawk is the GNU implementation of awk, a pattern scanning and
     14processing language.</para></sect4>
    1715
    1816<sect4><title>grcat</title>
  • appendixa/gawk.xml

    ra1d3af6 r4a88065  
    44
    55&aa-gawk-down;
     6&aa-gawk-shortdesc;
    67&aa-gawk-desc;
    78&aa-gawk-dep;
  • chapter05/bash-inst.xml

    ra1d3af6 r4a88065  
    5555</itemizedlist>
    5656
    57 <para>Now we can continue compiling Bash:</para>
     57<para>Now we can continue with compiling Bash:</para>
    5858
    5959<para><screen><userinput>make</userinput></screen></para>
  • chapter05/binutils-inst.xml

    ra1d3af6 r4a88065  
    3030</itemizedlist>
    3131
    32 <para>We'll finish off by compiling and installing the package:</para>
     32<para>Continue with compiling the package:</para>
    3333
    34 <para><screen><userinput>make LDFLAGS="-all-static" &amp;&amp;
    35 make install</userinput></screen></para>
     34<para><screen><userinput>make LDFLAGS="-all-static"</userinput></screen></para>
    3635
    3736<para>The meaning of the make option is:</para>
     
    4746</itemizedlist>
    4847
     48<para>And finish off installing the package:</para>
     49
     50<para><screen><userinput>make install</userinput></screen></para>
     51
    4952</sect2>
    5053
  • chapter05/bzip2-inst.xml

    ra1d3af6 r4a88065  
    99environment:</para>
    1010
    11 <para><screen><userinput>make CC="gcc -static -s"
    12 make PREFIX=$LFS/static install</userinput></screen></para>
     11<para><screen><userinput>make CC="gcc -static -s"</userinput></screen></para>
    1312
    14 <para>The meaning of the make options are:</para>
     13<para>The meaning of the make option is:</para>
    1514
    1615<itemizedlist>
    17 
    1816<listitem><para><userinput>CC="gcc -static -s":</userinput> The Bzip2 package
    1917does not honour the <emphasis>LDFLAGS</emphasis> variable, so instead we set
     
    2119The <emphasis>-static</emphasis> option tells the compiler to link all
    2220programs statically.</para></listitem>
     21</itemizedlist>
    2322
     23<para>And finish off installing the package:</para>
     24
     25<para><screen><userinput>make PREFIX=$LFS/static install</userinput></screen></para>
     26
     27<para>The meaning of the make option is:</para>
     28
     29<itemizedlist>
    2430<listitem><para><userinput>PREFIX=$LFS/static:</userinput> Instead of
    2531passing a <emphasis>--prefix=$LFS/static</emphasis> to a configure script,
  • chapter05/diffutils-inst.xml

    ra1d3af6 r4a88065  
    3030</itemizedlist>
    3131
    32 <para>Finish off by compiling and installing the package:</para>
     32<para>Continue with compiling the package:</para>
    3333
    34 <para><screen><userinput>make
    35 make install</userinput></screen></para>
     34<para><screen><userinput>make</userinput></screen></para>
     35
     36<para>And finish off installing the package:</para>
     37
     38<para><screen><userinput>make install</userinput></screen></para>
    3639
    3740</sect2>
  • chapter05/fileutils-inst.xml

    ra1d3af6 r4a88065  
    2626<para><screen><userinput>patch -Np1 -i ../fileutils-&fileutils-patch-version;.patch</userinput></screen></para>
    2727
    28 <para>Install Fileutils by running the following commands:</para>
     28<para>Prepare the package to be compiled:</para>
    2929
    3030<para><screen><userinput>LDFLAGS="-static" \
    31 &nbsp;&nbsp;&nbsp;&nbsp;./configure --disable-nls --prefix=$LFS/static
    32 make
    33 make install</userinput></screen></para>
     31&nbsp;&nbsp;&nbsp;&nbsp;./configure --disable-nls --prefix=$LFS/static</userinput></screen></para>
     32
     33<para>Continue with compiling the package:</para>
     34
     35<para><screen><userinput>make</userinput></screen></para>
     36
     37<para>And finsh off installing the package:</para>
     38
     39<para><screen><userinput>make install</userinput></screen></para>
    3440
    3541<para>Once you have installed Fileutils, you can test whether the
  • chapter05/findutils-inst.xml

    ra1d3af6 r4a88065  
    1111<para><screen><userinput>patch -Np1 -i ../findutils-&findutils-patch-version;.patch</userinput></screen></para>
    1212
    13 <para>Install Findutils by running the following:</para>
     13<para>Prepare Findutils to be compiled:</para>
    1414
    1515<para><screen><userinput>CPPFLAGS="-Dre_max_failures=re_max_failures2" \
    16 &nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static
    17 make
    18 make install</userinput></screen></para>
     16&nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static</userinput></screen></para>
     17
     18<para>Continue with compiling the package:</para>
     19
     20<para><screen><userinput>make</userinput></screen></para>
     21
     22<para>And finish off installing the package:</para>
     23
     24<para><screen><userinput>make install</userinput></screen></para>
    1925
    2026</sect2>
  • chapter05/gawk-inst.xml

    ra1d3af6 r4a88065  
     1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
     2
    13<sect2>
    24<title>Installation of Gawk</title>
    35
    4 <para>Install Gawk by running the following commands:</para>
     6<para>Prepare Gawk to be compiled:</para>
    57
    68<para><screen><userinput>CPPFLAGS=-Dre_max_failures=re_max_failures2 \
    7 &nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls &amp;&amp;
    8 make &amp;&amp;
    9 make install</userinput></screen></para>
     9&nbsp;&nbsp;&nbsp;&nbsp;LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls</userinput></screen></para>
     10
     11<para>Continue with compiling the package:</para>
     12
     13<para><screen><userinput>make</userinput></screen></para>
     14
     15<para>And finish off installing the package:</para>
     16
     17<para><screen><userinput>make install</userinput></screen></para>
    1018
    1119</sect2>
  • chapter05/gawk.xml

    ra1d3af6 r4a88065  
    66Estimated required disk space:  &gawk-compsize-static;</screen>
    77
     8&aa-gawk-shortdesc;
     9&aa-gawk-dep;
    810&c5-gawk-inst;
    9 &aa-gawk-desc;
    10 &aa-gawk-dep;
    1111
    1212</sect1>
  • entities/gawk.ent

    ra1d3af6 r4a88065  
    1010
    1111<!ENTITY aa-gawk SYSTEM "../appendixa/gawk.xml">
     12<!ENTITY aa-gawk-shortdesc SYSTEM "../appendixa/gawk-shortdesc.xml">
    1213<!ENTITY aa-gawk-desc SYSTEM "../appendixa/gawk-desc.xml">
    1314<!ENTITY aa-gawk-dep SYSTEM "../appendixa/gawk-dep.xml">
Note: See TracChangeset for help on using the changeset viewer.