make-inst.xml 1.2 KB

12345678910111213141516171819202122232425262728293031
  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>LDFLAGS="-static" ./configure --prefix=$LFS/static --disable-nls</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>During the make install phase you will see this warning:</para>
  11. <blockquote><screen>chgrp: changing group of `/mnt/lfs/static/bin/make': Operation not permitted
  12. /mnt/lfs/static/bin/make needs to be owned by group kmem and setgid;
  13. otherwise the `-l' option will probably not work. You may need special
  14. privileges to complete the installation of /mnt/lfs/static/bin/make.</screen></blockquote>
  15. <para>You can safely ignore this warning. The make program doesn't actually
  16. need to be owned by group kmem and setgid for the <emphasis>-l</emphasis>
  17. option to work. (This option tells make not to start any new jobs when a
  18. certain load on the system has been reached.)</para>
  19. </sect2>