From 0d9735e4886f0f21719fcfc9b34b0b83a40ee07a Mon Sep 17 00:00:00 2001 From: Archaic Date: Mon, 1 May 2006 16:47:39 +0000 Subject: 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 --- chapter06/module-init-tools.xml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'chapter06/module-init-tools.xml') 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. + + + -- cgit v1.2.3-54-g00ecf