diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-04-14 03:14:54 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-04-14 03:14:54 +0000 |
commit | 21651dc45e728f69c375f82f903d402b4a137adf (patch) | |
tree | fda8315d8645abbc733efbaf7d32d406cfd7d2d0 /chapter06 | |
parent | 8703c62e3fba3424a403d41a8dd8db74c91d7ff5 (diff) |
Updates
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@496 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/bashprofile.xml | 12 | ||||
-rw-r--r-- | 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 @@ <para> 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. </para> <para> @@ -31,9 +30,8 @@ export PS1 PATH </literallayout> <para> -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. </para> </sect1> 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: <blockquote><literallayout> - <userinput>sed -e 's|in \(.*\$PATH\)|in `echo \1`|' - configure > tmp~ &&</userinput> + <userinput>sed -e 's|in \(.*\$PATH\)|in `echo \1`|' + \</userinput> + <userinput> configure > tmp~ + &&</userinput> <userinput>mv tmp~ configure &&</userinput> <userinput>chmod 755 configure &&</userinput> <userinput>./configure -default &&</userinput> <userinput>make &&</userinput> <userinput>make install &&</userinput> - <userinput>sed s/AWK=/"AWK=\/usr\/bin\/mawk"/ /usr/sbin/makewhatis + <userinput>sed s/AWK=/"AWK=\/usr\/bin\/mawk"/ + \</userinput> + <userinput> /usr/sbin/makewhatis > makewhatis-new &&</userinput> <userinput>mv makewhatis-new /usr/sbin/makewhatis && </userinput> |