diff options
Diffstat (limited to 'chapter05/bash-inst.xml')
-rw-r--r-- | chapter05/bash-inst.xml | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/chapter05/bash-inst.xml b/chapter05/bash-inst.xml index f25dbaf21..5fbf03ec0 100644 --- a/chapter05/bash-inst.xml +++ b/chapter05/bash-inst.xml @@ -1,28 +1,18 @@ <sect2> <title>Installation of Bash</title> -<para> -Install Bash by running the following commands: -</para> +<para>Install Bash by running the following commands:</para> -<para> -<screen> -<userinput>./configure --enable-static-link --prefix=$LFS/usr \</userinput> +<para><screen><userinput>./configure --enable-static-link --prefix=$LFS/usr \</userinput> <userinput> --bindir=$LFS/bin --with-curses &&</userinput> <userinput>make &&</userinput> <userinput>make install &&</userinput> <userinput>cd $LFS/bin &&</userinput> -<userinput>ln -s bash sh</userinput> -</screen> -</para> +<userinput>ln -s bash sh</userinput></screen></para> -<para> -If the make install phase ends with something along the lines of -</para> +<para>If the make install phase ends with something along the lines of</para> -<blockquote> -<screen> -install-info: unknown option `--dir-file=/mnt/lfs/usr/info/dir' +<blockquote><screen>install-info: unknown option `--dir-file=/mnt/lfs/usr/info/dir' usage: install-info [--version] [--help] [--debug] [--maxwidth=nnn] [--section regexp title] [--infodir=xxx] [--align=nnn] [--calign=nnn] [--quiet] [--menuentry=xxx] @@ -31,19 +21,15 @@ usage: install-info [--version] [--help] [--debug] [--maxwidth=nnn] [--remove] [--] filename make[1]: *** [install] Error 1 make[1]: Leaving directory `/mnt/lfs/usr/src/bash-2.04/doc' -make: [install] Error 2 (ignored) -</screen> -</blockquote> +make: [install] Error 2 (ignored)</screen></blockquote> -<para> -then that means that you are probably using Debian, and that you have an +<para>then that means that you are probably using Debian, and that you have an old version of the texinfo package. This error is not severe by any means: the info pages will be installed when we recompile bash dynamically in chapter 6, so you can ignore it. You do, however, have to run the last two commands manually (the <userinput>cd $LFS/bin</userinput> and <userinput>ln -s bash sh</userinput> commands) because they won't be -executed when the error occurs. -</para> +executed when the error occurs.</para> </sect2> |