diff options
author | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-24 20:45:42 +0000 |
---|---|---|
committer | Mark Hymers <markh@linuxfromscratch.org> | 2001-08-24 20:45:42 +0000 |
commit | bccc28841facca8ece8b0ecac5b5f04cd6c545e0 (patch) | |
tree | 9eec18edb5174f825fe116b91e7eb3fcae113193 /chapter06/utillinux-inst.xml | |
parent | 0a68a6c5e7135beb133bd8d2ee4a59d927bd588a (diff) |
[Bug 140] Sed consistencies
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1020 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/utillinux-inst.xml')
-rw-r--r-- | chapter06/utillinux-inst.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/chapter06/utillinux-inst.xml b/chapter06/utillinux-inst.xml index 9bad2860e..b59dcf12d 100644 --- a/chapter06/utillinux-inst.xml +++ b/chapter06/utillinux-inst.xml @@ -5,10 +5,11 @@ adjtime file, instead of the usual /etc. To make hwclock, which is part of the util-linux package, FHS-compliant, run the following.</para> -<para><screen><userinput>sed 's|etc/adjtime|var/lib/hwclock/adjtime|' \</userinput> -<userinput> hwclock/hwclock.c > hwclock~ &&</userinput> -<userinput>mv -f hwclock~ hwclock/hwclock.c &&</userinput> -<userinput>mkdir /var/lib/hwclock</userinput></screen></para> +<para><screen><userinput>cp hwclock/hwclock.c hwclock/hwclock.c.backup &&</userinput> +<userinput>sed 's%etc/adjtime%var/lib/hwclock/adjtime%' \</userinput> +<userinput> hwclock/hwclock.c > tmp~ &&</userinput> +<userinput>mv -f tmp~ hwclock/hwclock.c &&</userinput> +<userinput>mkdir -p /var/lib/hwclock</userinput></screen></para> </sect2> |