Fixed issue where module-init-tools would not re-install its binaries. Thanks to Manuel for the report and Dan for the fix.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7571 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Archaic 2006-05-01 16:47:39 +00:00
parent 5ffff5d1b6
commit 0d9735e488
2 changed files with 18 additions and 1 deletions

View File

@ -39,6 +39,10 @@
<listitem>
<para>May 1, 2006</para>
<itemizedlist>
<listitem>
<para>[archaic] - Fixed issue where module-init-tools would not
re-install its binaries.</para>
</listitem>
<listitem>
<para>[archaic] - Updated to linux-2.6.16.11.</para>
</listitem>

View File

@ -53,7 +53,20 @@ make distclean</userinput></screen>
<para>Install the package:</para>
<screen><userinput>make install</userinput></screen>
<screen><userinput>make INSTALL=install install</userinput></screen>
<variablelist>
<title>The meaning of the make parameter:</title>
<varlistentry>
<term><parameter>INSTALL=install</parameter></term>
<listitem>
<para>Normally, make install will not install the binaries if they
already exist. This option overrides that behavior by calling
<command>install</command> instead of using the default wrapper
script.</para>
</listitem>
</varlistentry>
</variablelist>
</sect2>