aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2012-11-13 13:21:36 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2012-11-13 13:21:36 +0000
commit9eb452b7b49e94ee2299b2262fa6407b449cc795 (patch)
treeb3365f239db62c3d2fbec8ef2c865cba69898449 /chapter06
parent772c2b029da6bb7398ec3ccceb8063c5f189911a (diff)
Upgrade to Kmod-11. Fixes #3223.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10041 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/kmod.xml12
1 files changed, 8 insertions, 4 deletions
diff --git a/chapter06/kmod.xml b/chapter06/kmod.xml
index 18589a55a..5a4daf768 100644
--- a/chapter06/kmod.xml
+++ b/chapter06/kmod.xml
@@ -41,16 +41,13 @@
<sect2 role="installation">
<title>Installation of Kmod</title>
- <para>Apply a patch to fix a testsuite issue on 32-bit machines:</para>
-
-<screen><userinput remap="pre">patch -Np1 -i ../&kmod-test_fix-patch;</userinput></screen>
-
<para>Prepare Kmod for compilation:</para>
<screen><userinput remap="configure">./configure --prefix=/usr \
--bindir=/bin \
--libdir=/lib \
--sysconfdir=/etc \
+ --disable-manpages \
--with-xz \
--with-zlib</userinput></screen>
@@ -64,6 +61,13 @@
The shell variables are required in order for the xz and zlib headers
and libraries to be found in the absence of pkg-config.</para>
</listitem>
+
+ <term><parameter>--disable-manpages</parameter></term>
+ <listitem>
+ <para>This option prevents the man pages from being built, as they
+ rely on libxslt, which isn't available in the chroot
+ environment.</para>
+ </listitem>
</varlistentry>
</variablelist>