From 9d12a8a4e9b2f87df072443ecb93b552e9ac519d Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Sun, 10 Feb 2002 15:36:19 +0000 Subject: Moved additional programs to the ($LFS)/bin directory that are used by the bootscripts git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1553 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/grep-inst.xml | 2 +- chapter06/shellutils-inst.xml | 7 ++++--- chapter06/textutils-inst.xml | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) (limited to 'chapter06') diff --git a/chapter06/grep-inst.xml b/chapter06/grep-inst.xml index 7620afcd5..17885b7f5 100644 --- a/chapter06/grep-inst.xml +++ b/chapter06/grep-inst.xml @@ -3,7 +3,7 @@ Install Grep by running the following commands: -./configure --prefix=/usr && +./configure --prefix=/usr --bindir=/bin && make && make install diff --git a/chapter06/shellutils-inst.xml b/chapter06/shellutils-inst.xml index cd1f44b26..3003c052d 100644 --- a/chapter06/shellutils-inst.xml +++ b/chapter06/shellutils-inst.xml @@ -7,8 +7,8 @@ make && make install && cd /usr/bin && -mv date echo false pwd stty /bin && -mv su true uname hostname /bin && +mv basename date echo false hostname /bin && +mv pwd sleep stty su test true uname /bin && mv chroot ../sbin @@ -23,7 +23,8 @@ are built into the bash interpreter, but the FHS dictates that there should be a [ binary. We create that in this way, while still in the /usr/bin directory: -ln -sf test [ +cd /bin && +ln -sf test [ diff --git a/chapter06/textutils-inst.xml b/chapter06/textutils-inst.xml index 43088ac18..2b62f220a 100644 --- a/chapter06/textutils-inst.xml +++ b/chapter06/textutils-inst.xml @@ -6,7 +6,7 @@ ./configure --prefix=/usr && make && make install && -mv /usr/bin/cat /bin +mv /usr/bin/cat /usr/bin/head /bin -- cgit v1.2.3-54-g00ecf