From mboxrd@z Thu Jan 1 00:00:00 1970 From: alexandre.montplaisir@gmail.com (Alexandre Montplaisir) Date: Tue, 29 Nov 2011 14:35:16 -0500 Subject: [lttng-dev] [lttng-tools PATCH] Fix --enable-lttng-ust configure option Message-ID: <1322595316-6121-1-git-send-email-alexandre.montplaisir@gmail.com> 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 --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index d0a372a..3db4673 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 -- 1.7.7.3