make-inst.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132
  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 <userinput>make</userinput>
  16. program doesn't actually need to be owned by group kmem and setgid for the
  17. <emphasis>-l</emphasis> option to work. (This option tells
  18. <userinput>make</userinput> not to start any new jobs when a certain load
  19. on the system has been reached.)</para>
  20. </sect2>