aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vorel <pvorel@suse.cz>2021-01-21 10:38:19 +0100
committerPetr Vorel <pvorel@suse.cz>2021-01-21 11:53:23 +0100
commit2faab87c57be093114652d5dd684c33c7015dddc (patch)
tree76c78babe2e24cc0e8947197479c268458cc1694
parent60cb759e41dc33dbad5cdf1bfcf691bed932f2a7 (diff)
configure.ac: More descriptive NUMA error message
Some people were confused and searched for libnuma.so.2, which does not exist. Required is libnuma.so.1, but with LIBNUMA_API_VERSION >= 2. The API version is tighten to libnuma version in git, but that has nothing to do with library soname version, which is still 1.0.0. Reviewed-by: Cyril Hrubis <chrubis@suse.cz> Signed-off-by: Petr Vorel <pvorel@suse.cz>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e44e25cc6..aa8532119 100644
--- a/configure.ac
+++ b/configure.ac
@@ -347,7 +347,7 @@ LTP_CHECK_SYSCALL_FCNTL
if test "x$with_numa" = xyes; then
LTP_CHECK_SYSCALL_NUMA
- numa_error_msg="test requires libnuma >= 2 and it's development packages"
+ numa_error_msg="test requires libnuma development packages with LIBNUMA_API_VERSION >= 2"
else
numa_error_msg="NUMA support was disabled during build"
fi