diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-09-05 17:47:33 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-09-05 17:47:33 +0000 |
commit | 5cce404acfca10c9851dbc13e7c58c864f6852dd (patch) | |
tree | 67a41dc17ef4d9e4b0ed8a498fbd93a0404a7248 /chapter05/bash-exp.xml | |
parent | a558d676f3b3b5f33b3809efd89a9da70773d1c9 (diff) |
added notes to install ncurses properly on host distro (it's required
for texinfo to be compiled properly). Added --with-curses to bash's
configure again like previously done. This now functions as a test to
make sure the libraries are setup properly (ie; that symlink created and
such)
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1181 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/bash-exp.xml')
-rw-r--r-- | chapter05/bash-exp.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/chapter05/bash-exp.xml b/chapter05/bash-exp.xml index c4343c27d..949e22ab8 100644 --- a/chapter05/bash-exp.xml +++ b/chapter05/bash-exp.xml @@ -16,6 +16,19 @@ partition which has to be mounted at some point. Before that partition is mounted you need and will want to have bash available (it will be hard to execute the boot scripts without a shell for instance).</para> +<para><userinput>--with-curses:</userinput> This causes Bash to be +linked against the curses library instead of the default termcap +library which is becoming obsolete.</para> + +<para>It is not strictly necessary for the static bash to be linked +against libncurses (it can link against a static termap for the time +being just fine because we will reinstall Bash in chapter 6 anyways, +where we will use libncurses), but it's a good test to make sure that +the ncurses package has been installed properly. If not, you will get in +trouble later on in this chapter when you install the Texinfo package. +That package requires ncurses and termcap can't reliably be used +there.</para> + <para><userinput>ln -sf bash sh:</userinput> This command creates the sh symlink that points to bash. Most scripts run themselves via 'sh' (invoked by the #!/bin/sh as the first line in the scripts) which |