make-inst.xml 919 B

1234567891011121314151617181920212223
  1. <sect2>
  2. <title>Installation of Make</title>
  3. <para>Install Make by running the following commands:</para>
  4. <para><screen><userinput>./configure --prefix=$LFS/usr --disable-nls &amp;&amp;
  5. make LDFLAGS=-static &amp;&amp;
  6. make install</userinput></screen></para>
  7. <para>During the make install phase you will see this warning:</para>
  8. <blockquote><screen>chgrp: changing group of `/mnt/lfs/usr/bin/make': Operation not permitted
  9. /mnt/lfs/usr/bin/make needs to be owned by group kmem and setgid;
  10. otherwise the `-l' option will probably not work. You may need special
  11. privileges to complete the installation of /mnt/lfs/usr/bin/make.</screen></blockquote>
  12. <para>You can safely ignore this warning. make doesn't need to be owned by
  13. group kmem and setgid for the <emphasis>-l</emphasis> option to work (which
  14. you can use to tell make not to start any new jobs when a certain load on
  15. the system is reached).</para>
  16. </sect2>