diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2008-02-24 20:52:29 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2008-02-24 20:52:29 +0000 |
commit | f9dcd750acf26db36d01f8d784aa47b104d70759 (patch) | |
tree | 75e6974d7411b7861e1c06a40d687d5a94235065 | |
parent | f84ac7e7d965f0cf2adcfd5bcded51a85c1b48a5 (diff) |
Add --libexecdir parameter to Man-DB's configure command. Fixes #2153. Also, remove the --enable-mb-groff parameter as the groff multibyte patch is detected automatically by configure now.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8492 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 14 | ||||
-rw-r--r-- | chapter06/man-db.xml | 11 |
2 files changed, 15 insertions, 10 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 2aae7580d..b87a69314 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -37,6 +37,20 @@ --> <listitem> + <para>2008-02-24</para> + <itemizedlist> + <listitem> + <para>[matthew] - Add --libexecdir parameter to Man-db's configure + command so that <command>globbing</command> and + <command>manconv</command> are installed into /usr/libexec/man-db. + Fixes <ulink url="&lfs-ticket-root;2153">#2153</ulink>. Also, remove + the --enable-mb-groff parameter, as this is now detected + automatically.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2008-02-19</para> <itemizedlist> <listitem> diff --git a/chapter06/man-db.xml b/chapter06/man-db.xml index 52de24fee..95ff83bc3 100644 --- a/chapter06/man-db.xml +++ b/chapter06/man-db.xml @@ -71,21 +71,12 @@ EOF</userinput></screen> <para>Prepare Man-DB for compilation:</para> -<screen><userinput remap="configure">./configure --prefix=/usr --enable-mb-groff --disable-setuid</userinput></screen> +<screen><userinput remap="configure">./configure --prefix=/usr --libexecdir=/usr/lib --disable-setuid</userinput></screen> <variablelist> <title>The meaning of the configure options:</title> <varlistentry> - <term><parameter>--enable-mb-groff</parameter></term> - <listitem> - <para>This tells the <command>man</command> program to use the - <quote>ascii8</quote> and <quote>nippon</quote> Groff devices for - formatting non-ISO-8859-1 manual pages.</para> - </listitem> - </varlistentry> - - <varlistentry> <term><parameter>--disable-setuid</parameter></term> <listitem> <para>This disables making the <command>man</command> program setuid |