]> git.puffer.fish Git - matthieu/frr.git/commitdiff
configure.ac: fix a typo in an error message
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Thu, 8 Nov 2018 11:29:57 +0000 (12:29 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Thu, 8 Nov 2018 11:33:26 +0000 (12:33 +0100)
Signed-off-by: Ruben Kerkhof <ruben@rubenkerkhof.com>
configure.ac

index 6782c539ede05461a5a2ad16191fab8f20b2ceaa..3a6e7883fb24702f3962213e6c0ff0fa3bcdf48e 100755 (executable)
@@ -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
 ])