General edits. Added bash+readline display_wrap patches

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4040 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Gerard Beekmans
2004-08-17 22:12:01 +00:00
parent 685031656e
commit 24a08b94de
20 changed files with 162 additions and 68 deletions

View File

@@ -28,11 +28,28 @@ GCC, Glibc, Grep, Make, Ncurses, Sed.</seg></seglistitem>
<sect2 role="installation">
<title>Installation of Bash</title>
<para>The following patch fixes a problem where Bash sometimes will
only show 33 characters on a line and then wraps to the next
line.</para>
<screen><userinput>patch -Np1 -i ../bash-&bash-version;-display_wrap-1.patch</userinput></screen>
<para>Prepare Bash for compilation:</para>
<screen><userinput>./configure --prefix=/usr --bindir=/bin \
--without-bash-malloc --with-installed-readline</userinput></screen>
<para>The meaning of the configure option:</para>
<variablelist>
<varlistentry>
<term><parameter>--with-installed-readline</parameter></term>
<listitem><para>This options tells Bash to use the
<filename>readline</filename> library that is already installed on the
system rather than using its own readline version.</para></listitem>
</varlistentry>
</variablelist>
<para>Compile the package:</para>
<screen><userinput>make</userinput></screen>