From 34cc81edd9651525c1dfc6b2a5c8cb23c03d5b55 Mon Sep 17 00:00:00 2001 From: Timothy Bauscher Date: Fri, 17 Jan 2003 04:42:53 +0000 Subject: Converted utillinux. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2383 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/utillinux-inst.xml | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'chapter06/utillinux-inst.xml') diff --git a/chapter06/utillinux-inst.xml b/chapter06/utillinux-inst.xml index b8d0c88e5..6d0232cf1 100644 --- a/chapter06/utillinux-inst.xml +++ b/chapter06/utillinux-inst.xml @@ -1,9 +1,11 @@ +   + FHS compliance notes The FHS recommends that we use /var/lib/hwclock, instead of the usual /etc, as the location of the adjtime file. To make hwclock, which -is part of the util-linux package, FHS-compliant, run the following. +is part of the util-linux package, FHS-compliant, run the following: cp hwclock/hwclock.c{,.backup} && sed 's%etc/adjtime%var/lib/hwclock/adjtime%' \ @@ -15,11 +17,20 @@ mkdir -p /var/lib/hwclock Installation of Util-linux -Install Util-linux by running the following commands: +Prepare Util-linux to be compiled: + +./configure + +Continue with compiling the package: + +make HAVE_SLN=yes + +The HAVE_SLN option prevents this package, +which was already was installed by Glibc, from being built again. + +Finish installing the package: -./configure && -make HAVE_SLN=yes && -make HAVE_SLN=yes install +make HAVE_SLN=yes install -- cgit v1.2.3-54-g00ecf