diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2009-03-11 21:27:25 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2009-03-11 21:27:25 +0000 |
commit | 835b56ae9c714560cbf2158ef6005f9919fecc25 (patch) | |
tree | 85c11f47564d646d5357264a213308f7d91ee316 /chapter06/bash.xml | |
parent | 01da931a7f0bc541070a6c9a21d2b6a3108e90b4 (diff) |
Upgrade to Bash-4.0. Fixes #2351.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8821 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/bash.xml')
-rw-r--r-- | chapter06/bash.xml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/chapter06/bash.xml b/chapter06/bash.xml index 281ce99ca..98d966c06 100644 --- a/chapter06/bash.xml +++ b/chapter06/bash.xml @@ -40,23 +40,23 @@ <sect2 role="installation"> <title>Installation of Bash</title> - <para>If you downloaded the Bash documentation tarball and wish to install - HTML documentation, issue the following commands:</para> - -<screen><userinput remap="pre">tar -xvf ../bash-doc-&bash-doc-version;.tar.gz -sed -i "s|htmldir = @htmldir@|htmldir = /usr/share/doc/bash-&bash-version;|" \ - Makefile.in</userinput></screen> - <para>Prepare Bash for compilation:</para> <screen><userinput remap="configure">./configure --prefix=/usr --bindir=/bin \ - --without-bash-malloc \ - --with-installed-readline ac_cv_func_working_mktime=yes</userinput></screen> + --htmldir=/usr/share/doc/bash-&bash-version; --without-bash-malloc \ + --with-installed-readline</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> <varlistentry> + <term><parameter>--htmldir</parameter></term> + <listitem> + <para>This option designates the directory into which HTML formatted + documentation will be installed.</para> + </listitem> + </varlistentry> + <varlistentry> <term><parameter>--with-installed-readline</parameter></term> <listitem> <para>This option tells Bash to use the <filename |