diff options
author | Archaic <archaic@linuxfromscratch.org> | 2005-06-06 01:27:49 +0000 |
---|---|---|
committer | Archaic <archaic@linuxfromscratch.org> | 2005-06-06 01:27:49 +0000 |
commit | aa8363a353173ffc92bcefc3a699aeb928835bbe (patch) | |
tree | a53bb18a51bd06fb91a169f6377ccc77e656fc36 /chapter06 | |
parent | 83211231861c80d0560a59772c795c8361fde0ce (diff) |
Added a command to prevent module-init-tools from rewriting it's man page.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@5716 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/module-init-tools.xml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/chapter06/module-init-tools.xml b/chapter06/module-init-tools.xml index a3f8412c4..6e9e26263 100644 --- a/chapter06/module-init-tools.xml +++ b/chapter06/module-init-tools.xml @@ -31,17 +31,20 @@ Coreutils, Diffutils, Flex, GCC, Glibc, Grep, M4, Make, and Sed</seg></seglistit <sect2 role="installation"> <title>Installation of Module-Init-Tools</title> +<para>Module-Init-Tools attempts to rewrite it's +<filename>modprobe.conf</filename> man page during the build process. Not only +is this unnecessary, it relies on <command>docbook2man</command> which is not +installed in LFS. To prevent this do the following:</para> + +<screen><userinput>touch modprobe.conf.5</userinput></screen> + <para>Prepare Module-Init-Tools for compilation:</para> <screen><userinput>./configure --prefix="" --enable-zlib</userinput></screen> <para>Compile the package:</para> -<screen><userinput>make DOCBOOKTOMAN=""</userinput></screen> - -<!-- Edit me --> -<para>The <envar>DOCBOOKTOMAN</envar> option allows the compile process to -complete without regenerating the man pages.</para> +<screen><userinput>make</userinput></screen> <para>To test the results, issue: <userinput>make check</userinput>.</para> |