make-inst.xml 1012 B

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