Changeset 2424a66e


Ignore:
Timestamp:
01/15/2003 07:49:29 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:
e617152
Parents:
da72ce8
Message:

converted c6-make

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

Files:
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • chapter06/make-inst.xml

    rda72ce8 r2424a66e  
     1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
     2
    13<sect2>
    24<title>Installation of Make</title>
    35
    4 <para>Install Make by running the following commands:</para>
     6<para>Prepare Make to be compiled:</para>
    57
    6 <para><screen><userinput>./configure --prefix=/usr &amp;&amp;
    7 make &amp;&amp;
    8 make install &amp;&amp;
    9 chgrp root /usr/bin/make &amp;&amp;
     8<para><screen><userinput>./configure --prefix=/usr</userinput></screen></para>
     9
     10<para>Continue with compiling the package:</para>
     11
     12<para><screen><userinput>make</userinput></screen></para>
     13
     14<para>And finish off installing the package:</para>
     15
     16<para><screen><userinput>make install</userinput></screen></para>
     17
     18<para>By default <filename>/usr/bin/make</filename> is installed setgid
     19kmem. This is needed on some systems so it can check the load average by
     20using <filename>/dev/kmem</filename>. However, on Linux systems, setgid
     21kmem is not needed, so we remove this from our <filename>make</filename>
     22binary. This also fixes problems with the <filename>make</filename>
     23ignoring certain variables like <emphasis>LD_LIBRARY_PATH</emphasis>.</para>
     24
     25<para><screen><userinput>chgrp root /usr/bin/make &amp;&amp;
    1026chmod 755 /usr/bin/make</userinput></screen></para>
    1127
  • chapter06/make.xml

    rda72ce8 r2424a66e  
    66Estimated required disk space:  &make-compsize;</screen>
    77
     8&aa-make-shortdesc;
     9&aa-make-dep;
    810&c6-make-inst;
    9 &c6-make-exp;
    10 &aa-make-desc;
    11 &aa-make-dep;
    1211
    1312</sect1>
  • entities/make.ent

    rda72ce8 r2424a66e  
    66<!ENTITY c6-make SYSTEM "../chapter06/make.xml">
    77<!ENTITY c6-make-inst SYSTEM "../chapter06/make-inst.xml">
    8 <!ENTITY c6-make-exp SYSTEM "../chapter06/make-exp.xml">
    98
    109<!ENTITY aa-make SYSTEM "../appendixa/make.xml">
     10<!ENTITY aa-make-shortdesc SYSTEM "../appendixa/make-shortdesc.xml">
    1111<!ENTITY aa-make-shortdesc SYSTEM "../appendixa/make-shortdesc.xml">
    1212<!ENTITY aa-make-desc SYSTEM "../appendixa/make-desc.xml">
Note: See TracChangeset for help on using the changeset viewer.