diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-09-11 16:37:06 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-09-11 16:37:06 +0000 |
commit | f8217e15032f5b1c0731a650f61dce06b14a9b9e (patch) | |
tree | f12d3a32f5ee586e220d76c9a743a1da77913ae6 | |
parent | 8f5eebe6bd3af630657670c7cec3d3595155fd4c (diff) |
some textual updates
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1221 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter05/bash-inst.xml | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/chapter05/bash-inst.xml b/chapter05/bash-inst.xml index 032d09ddc..1a7522c90 100644 --- a/chapter05/bash-inst.xml +++ b/chapter05/bash-inst.xml @@ -3,14 +3,17 @@ <para>Before you attempt to install Bash, you have to check to make sure your distribution has the <filename>/usr/lib/libcurses.a</filename> and -<filename>/usr/lib/libncurses.a</filename> files. If both of the files -are missing, you have to install the ncurses development package. This -package is often call something like <emphasis>ncurses-dev</emphasis>.</para> - -<para>If this package is already installed, or you just did it, check -for the two files again. Often the <filename>libcurses.a</filename> file -is (still) missing. If so, then create <filename>libcurses.a</filename> -as a symlink by running the following commands:</para> +<filename>/usr/lib/libncurses.a</filename> files. If your host +distribution is an LFS system, all files will be present if you followed +the instructions of the book version you read exactly.</para> + +<para>If both of the files are missing, you have to install the ncurses +development package. This package is often call something like +<emphasis>ncurses-dev</emphasis>. If this package is already installed, +or you just did it, check for the two files again. Often the +<filename>libcurses.a</filename> file is (still) missing. If so, then +create <filename>libcurses.a</filename> as a symlink by running the +following commands:</para> <para><screen><userinput>cd /usr/lib &&</userinput> <userinput>ln -s libncurses.a libcurses.a</userinput></screen></para> |