diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index c641c6f44..ddc66a61e 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -39,6 +39,10 @@ May 1, 2006 + + [archaic] - Fixed issue where module-init-tools would not + re-install its binaries. + [archaic] - Updated to linux-2.6.16.11. diff --git a/chapter06/module-init-tools.xml b/chapter06/module-init-tools.xml index bcdcfff5d..0c2be1881 100644 --- a/chapter06/module-init-tools.xml +++ b/chapter06/module-init-tools.xml @@ -53,7 +53,20 @@ make distclean Install the package: -make install +make INSTALL=install install + + + The meaning of the make parameter: + + INSTALL=install + + Normally, make install will not install the binaries if they + already exist. This option overrides that behavior by calling + install instead of using the default wrapper + script. + + +