From 2424a66ecc06724e8ecb55cf6adb070715f1effd Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Wed, 15 Jan 2003 19:49:29 +0000 Subject: converted c6-make git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2341 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/make-exp.xml | 13 ------------- chapter06/make-inst.xml | 26 +++++++++++++++++++++----- chapter06/make.xml | 5 ++--- 3 files changed, 23 insertions(+), 21 deletions(-) delete mode 100644 chapter06/make-exp.xml (limited to 'chapter06') diff --git a/chapter06/make-exp.xml b/chapter06/make-exp.xml deleted file mode 100644 index 7bd539b7f..000000000 --- a/chapter06/make-exp.xml +++ /dev/null @@ -1,13 +0,0 @@ - -Command explanations - -By default /usr/bin/make is installed setgid -kmem. This is needed on some systems so it can check the load average by -using /dev/kmem. However, on Linux systems, setgid -kmem is not needed, so we remove this from our make -binary. This also fixes problems with the make -ignoring certain variables like -LD_LIBRARY_PATH. - - - diff --git a/chapter06/make-inst.xml b/chapter06/make-inst.xml index 02cce215e..f80096f4d 100644 --- a/chapter06/make-inst.xml +++ b/chapter06/make-inst.xml @@ -1,12 +1,28 @@ +   + Installation of Make -Install Make by running the following commands: +Prepare Make to be compiled: + +./configure --prefix=/usr + +Continue with compiling the package: + +make + +And finish off installing the package: + +make install + +By default /usr/bin/make is installed setgid +kmem. This is needed on some systems so it can check the load average by +using /dev/kmem. However, on Linux systems, setgid +kmem is not needed, so we remove this from our make +binary. This also fixes problems with the make +ignoring certain variables like LD_LIBRARY_PATH. -./configure --prefix=/usr && -make && -make install && -chgrp root /usr/bin/make && +chgrp root /usr/bin/make && chmod 755 /usr/bin/make diff --git a/chapter06/make.xml b/chapter06/make.xml index 94e5f96cc..0f477d832 100644 --- a/chapter06/make.xml +++ b/chapter06/make.xml @@ -5,9 +5,8 @@ Estimated build time: &make-time; Estimated required disk space: &make-compsize; -&c6-make-inst; -&c6-make-exp; -&aa-make-desc; +&aa-make-shortdesc; &aa-make-dep; +&c6-make-inst; -- cgit v1.2.3-54-g00ecf