diff options
author | Archaic <archaic@linuxfromscratch.org> | 2005-06-08 20:23:42 +0000 |
---|---|---|
committer | Archaic <archaic@linuxfromscratch.org> | 2005-06-08 20:23:42 +0000 |
commit | 35508aad170a63c7b9ad5f2c01f46df983728354 (patch) | |
tree | ca4914b7bd9bd89fc74524d5e3f3a6d9f3bbcffc /chapter06 | |
parent | 019ea719b35ea4f0470b8939720e576ac47f3a78 (diff) |
Merged r5716 and r5787 to testing.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.1/BOOK@5793 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 53cf74e3c..1520129ca 100644 --- a/chapter06/module-init-tools.xml +++ b/chapter06/module-init-tools.xml @@ -29,17 +29,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 its +<filename>modprobe.conf</filename> man page during the build process. This is +unnecessary and also relies on <command>docbook2man</command> — which is not +installed in LFS. Run the following command to avoid this:</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> |