From: Ruben Kerkhof Date: Thu, 8 Nov 2018 11:29:57 +0000 (+0100) Subject: configure.ac: fix a typo in an error message X-Git-Tag: frr-7.1-dev~219^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=1f104f57eec6e8407994474ff0d8545b754c9ce5;p=matthieu%2Ffrr.git configure.ac: fix a typo in an error message Signed-off-by: Ruben Kerkhof --- 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 ])