diff options
author | Richard Yao <ryao@gentoo.org> | 2012-11-16 23:15:39 -0500 |
---|---|---|
committer | Richard Yao <ryao@cs.stonybrook.edu> | 2012-11-17 01:07:22 -0500 |
commit | a91a7609b204ba01037df4ab314dc81c0589c8cb (patch) | |
tree | 797bbf0406430343ed5e14699e157c0ffe307a4e /configure.ac | |
parent | 74126789861b5a87bb9fa5ebd1982e475ed3f5b2 (diff) |
Eliminate kmod dependency
Changes to rules were introduced by
06316d9f1a91b4d3efdb7402e72498cb3deb1806 while kmod support was
introduced in other commits. A ton of commits were made involving kmod
and it is quite clear that it is broken, so we remove it.
This changes our rules to depend on modprobe. As long as the modprobe
binary is in /, and not /usr, udev module loading should function
properly.
Signed-off-by: Richard Yao <ryao@gentoo.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 8d096bacac..00f928640e 100644 --- a/configure.ac +++ b/configure.ac @@ -38,9 +38,7 @@ if test -z "$GPERF" ; then AC_MSG_ERROR([*** gperf not found]) fi -# TODO check this --- we don't want kmod necessarily -PKG_CHECK_MODULES(KMOD, [libkmod >= 5]) -PKG_CHECK_MODULES(BLKID,[blkid >= 2.20]) +# PKG_CHECK_MODULES(BLKID,[blkid >= 2.20]) # Checks for header files. AC_CHECK_HEADERS( |