From 126bf5f49f3daea4c7c11570e56569bc6fd6d35b Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Sun, 5 Nov 2017 09:08:03 -0500 Subject: [PATCH] Update Makefile.am output about libnuma not found Signed-off-by: Mathieu Desnoyers --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"]) -- 2.34.1