From edfe9b6f82d7e0f2543d09dcc23cc6f78abc532f Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Thu, 21 Mar 2002 19:49:12 +0000 Subject: [PATCH] added rm /bin/bzless /bin/bzmore git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1746 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter01/changelog.xml | 8 ++++++++ chapter06/bzip2-inst.xml | 1 + 2 files changed, 9 insertions(+) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 188c84bac..1a497b0a5 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -33,6 +33,14 @@ +March 21st, 2002 [gerard]: Chapter 06 - Bzip2: Before we +move /usr/bin/bzless and +/usr/bin/bzmore to the /bin directory, we first remove the +/bin/bzless and /bin/bzmore +files. On some systems overwriting the existing files doesn't work due to +hardlinks being used. + March 21st, 2002 [gerard]: Appendix A - Sysklogd: Updated the download location to http://www.infodrom.org/projects/sysklogd/ diff --git a/chapter06/bzip2-inst.xml b/chapter06/bzip2-inst.xml index c206d39a2..a26bb1919 100644 --- a/chapter06/bzip2-inst.xml +++ b/chapter06/bzip2-inst.xml @@ -14,6 +14,7 @@ cd /usr/lib && ln -sf ../../lib/libbz2.so && cd /usr/bin && rm bunzip2 bzcat bzip2 && +rm /bin/bzless /bin/bzmore && mv bzip2recover bzless bzmore /bin && cd /bin && ln -sf bzip2 bunzip2 &&