From 21651dc45e728f69c375f82f903d402b4a137adf Mon Sep 17 00:00:00 2001 From: Gerard Beekmans Date: Sat, 14 Apr 2001 03:14:54 +0000 Subject: Updates git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@496 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/bashprofile.xml | 12 +++++------- chapter06/man-inst.xml | 10 +++++++--- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/chapter06/bashprofile.xml b/chapter06/bashprofile.xml index d1e89a484..00c56f3b7 100644 --- a/chapter06/bashprofile.xml +++ b/chapter06/bashprofile.xml @@ -4,10 +4,9 @@ When we have entered the chroot'ed environment in the next section we want to export a couple of environment variables in that shell such as -PS1, PATH and others variables a user wants to have set. For that -purpose we'll -create the $LFS/root/.bash_profile file which will be read by bash when we -enter the chroot environment. +PS1, PATH and others variables which are good to have set. For that +purpose we'll create the $LFS/root/.bash_profile file which will be read +by bash when we enter the chroot environment. @@ -31,9 +30,8 @@ export PS1 PATH -More environment variables,aliases and whatever else is -needed/wanted can be added at the users own discretion -as he deems them necessary. +Additional environment variables, aliases and so forth that are +needed and/or wanted can be added at your own discretion. diff --git a/chapter06/man-inst.xml b/chapter06/man-inst.xml index c23c47916..b3e9eec8f 100644 --- a/chapter06/man-inst.xml +++ b/chapter06/man-inst.xml @@ -7,14 +7,18 @@ Install Man by running the following commands:
- sed -e 's|in \(.*\$PATH\)|in `echo \1`|' - configure > tmp~ && + sed -e 's|in \(.*\$PATH\)|in `echo \1`|' + \ +    configure > tmp~ + && mv tmp~ configure && chmod 755 configure && ./configure -default && make && make install && - sed s/AWK=/"AWK=\/usr\/bin\/mawk"/ /usr/sbin/makewhatis + sed s/AWK=/"AWK=\/usr\/bin\/mawk"/ + \ +    /usr/sbin/makewhatis > makewhatis-new && mv makewhatis-new /usr/sbin/makewhatis && -- cgit v1.2.3-54-g00ecf