]> git.ipfire.org Git - thirdparty/collectd.git/commitdiff
dpdk_telemetry plugin: prefix missed lib
authorReshma Pattan <reshma.pattan@intel.com>
Tue, 24 Sep 2019 16:19:26 +0000 (17:19 +0100)
committerReshma Pattan <reshma.pattan@intel.com>
Fri, 11 Oct 2019 16:39:59 +0000 (17:39 +0100)
Some places missing the lib prefix in
"with_libjansson", so add the missing prefix.

Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>
configure.ac

index 8f8ea5a59f204ba75e8b069343e9eb7f4fef0c93..a448fae161de623d3271d6928f8779e719fa933f 100644 (file)
@@ -4579,11 +4579,11 @@ if test "x$with_libjansson" = "xyes"; then
 fi
 if test "x$with_libjansson" = "xyes"; then
   SAVE_LDFLAGS="$LDFLAGS"
-  LDFLAGS="$LDFLAGS $with_jansson_ldflags"
+  LDFLAGS="$LDFLAGS $with_libjansson_ldflags"
 
   AC_CHECK_LIB([jansson], [json_is_object],
-    [with_jansson="yes"],
-    [with_jansson="no (Symbol 'json_is_object' not found)"]
+    [with_libjansson="yes"],
+    [with_libjansson="no (Symbol 'json_is_object' not found)"]
   )
 
   LDFLAGS="$SAVE_LDFLAGS"