From 0d9735e4886f0f21719fcfc9b34b0b83a40ee07a Mon Sep 17 00:00:00 2001 From: Archaic Date: Mon, 1 May 2006 16:47:39 +0000 Subject: [PATCH] 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 --- chapter01/changelog.xml | 4 ++++ chapter06/module-init-tools.xml | 15 ++++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) 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. + + +