From 0e636c80aae070dcb89850990053bf3711283340 Mon Sep 17 00:00:00 2001 From: Alexandre Montplaisir Date: Tue, 29 Nov 2011 15:20:43 -0500 Subject: [PATCH] Fix --enable-lttng-ust configure option Specifying either --enable-lttng-ust or --disable-lttng-ust would DISABLE the option. This fix makes it listen to either we want to enable or disable it (it remains enabled by default). Signed-off-by: Alexandre Montplaisir Signed-off-by: Mathieu Desnoyers --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 287b67ddb..6a6dfac04 100644 --- a/configure.ac +++ b/configure.ac @@ -86,7 +86,7 @@ AC_CHECK_DECL([caa_likely], [], # Check liblttng-ust-ctl library AC_ARG_ENABLE(lttng-ust, [ --disable-lttng-ust build without LTTng-UST (Userspace Tracing) support.], - lttng_ust_support=no, lttng_ust_support=yes) + lttng_ust_support=$enableval, lttng_ust_support=yes) [ if test "x$lttng_ust_support" = "xno"; then -- 2.34.1