The Module-Init-Tools package contains programs for handling kernel modules in Linux kernels greater than or equal to version 2.5.47.
First correct a potential problem when modules are specified using regular expressions:
patch -Np1 -i ../module-init-tools-3.2.2-modprobe-1.patch
Issue the following commands to perform the tests (note that the make distclean command is required to clean up the source tree, as the source gets recompiled as part of the testing process):
./configure && make check && make distclean
Prepare Module-Init-Tools for compilation:
./configure --prefix=/ --enable-zlib
Compile the package:
make
Install the package:
make INSTALL=install install
The meaning of the make parameter:
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.