From: Philippe Proulx Date: Tue, 21 Jun 2016 20:29:38 +0000 (-0400) Subject: configure.ac: fix --enable/disable-kmod option X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=ebaf531b307e210afe47741ede85d545cfac1ee4 configure.ac: fix --enable/disable-kmod option Now all the following work as expected: * No option (defaults to --enable-kmod) * --disable-kmod * --enable-kmod * --enable-kmod=no * --enable-kmod=yes Signed-off-by: Philippe Proulx Signed-off-by: Jérémie Galarneau --- diff --git a/configure.ac b/configure.ac index d6149feae..fb2b0136f 100644 --- a/configure.ac +++ b/configure.ac @@ -394,7 +394,7 @@ AC_ARG_WITH(kmod-prefix, AC_ARG_ENABLE(kmod, AS_HELP_STRING([--disable-kmod],[build without kmod support]), - kmod_support=zz$enableval, kmod_support=yes) + kmod_support=$enableval, kmod_support=yes) AS_IF([test "x$kmod_support" = "xyes"], [ AC_CHECK_LIB([kmod], [kmod_module_probe_insert_module],