Back to the Main Page. | ac_prog_modprobe |
Download the M4 Source. |
AC_PROG_MODPROBE
2000-12-31 0.5.65 : InstalledPackages
Kaelin Colclasure <kaelin@acm.org>
license: AllPermissive
AC_DEFUN([AC_PROG_MODPROBE],[ AC_PATH_PROG(MODPROBE, modprobe, , $PATH:/sbin) if test -z "$MODPROBE"; then AC_MSG_WARN([no support for loadable kernel modules]) else AC_MSG_CHECKING([for module_prefix]) module_prefix=`$MODPROBE -c | grep path.kernel.= \ | sed -e '2,$d' -e 's/.*=//' -e 's/.kernel//'` AC_MSG_RESULT($module_prefix) AC_SUBST(module_prefix) fi ])