From: Philippe Proulx Date: Tue, 21 Jun 2016 20:29:38 +0000 (-0400) Subject: configure.ac: fix --enable/disable-kmod option X-Git-Tag: v2.7.4~4 X-Git-Url: http://git.liburcu.org/?p=lttng-tools.git;a=commitdiff_plain;h=ceef7a54f4316e7f4774f9fa075ed8885bdf3cbb 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 1aed41ed1..ccd1b10a0 100644 --- a/configure.ac +++ b/configure.ac @@ -264,7 +264,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],