From 1f104f57eec6e8407994474ff0d8545b754c9ce5 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Thu, 8 Nov 2018 12:29:57 +0100 Subject: [PATCH] configure.ac: fix a typo in an error message Signed-off-by: Ruben Kerkhof --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6782c539ed..3a6e7883fb 100755 --- a/configure.ac +++ b/configure.ac @@ -522,7 +522,7 @@ AC_CHECK_LIB(json-c, json_object_get, LIBS="$LIBS -ljson-c", [], [-lm]) if test "$ac_cv_lib_json_c_json_object_get" = no; then AC_CHECK_LIB(json, json_object_get, LIBS="$LIBS -ljson") if test "$ac_cv_lib_json_json_object_get" = no; then - AC_MSG_ERROR([lib json is needed to compile]) + AC_MSG_ERROR([libjson is needed to compile]) fi fi ]) -- 2.39.5