From: Mathieu Desnoyers Date: Sun, 5 Nov 2017 14:08:03 +0000 (-0500) Subject: Update Makefile.am output about libnuma not found X-Git-Tag: v2.11.0-rc1~39 X-Git-Url: http://git.lttng.org/?p=lttng-ust.git;a=commitdiff_plain;h=126bf5f49f3daea4c7c11570e56569bc6fd6d35b Update Makefile.am output about libnuma not found Signed-off-by: Mathieu Desnoyers --- diff --git a/configure.ac b/configure.ac index 8a5b6646..ca1de874 100644 --- a/configure.ac +++ b/configure.ac @@ -258,7 +258,8 @@ AS_HELP_STRING([--disable-numa], [disable NUMA support]) AS_IF([test "x$enable_numa" = "xyes"], [ # numa - check that numa lib is available - AC_CHECK_LIB([numa], [numa_available], [], [AC_MSG_ERROR([libnuma is required, please install it (e.g. libnuma-dev) or use [LDFLAGS]=-Ldir to specify the right location.])]) + AC_CHECK_LIB([numa], [numa_available], [], +[AC_MSG_ERROR([libnuma is not available. Please either install it (e.g. libnuma-dev) or use [LDFLAGS]=-Ldir to specify the right location, or use --disable-numa configure argument to disable NUMA support.])]) have_libnuma=yes ]) AM_CONDITIONAL([HAVE_LIBNUMA], [test "x$have_libnuma" = "xyes"])