meson: fix lib names

PLDM libs were being prefixed with a duplicate 'lib'. Fixed this such
that they're named as usual, for eg libpldm.so.

Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
Change-Id: If6819baa4f7b912d6fd2cfd6f1a50ac9032b968c
diff --git a/libpldm/meson.build b/libpldm/meson.build
index 680608f..fb2fcf6 100644
--- a/libpldm/meson.build
+++ b/libpldm/meson.build
@@ -29,7 +29,7 @@
   subdir: 'libpldm')
 
 libpldm = library(
-  'libpldm',
+  'pldm',
   sources,
   implicit_include_directories: false,
   include_directories: include_directories(libpldm_headers),
diff --git a/libpldmresponder/meson.build b/libpldmresponder/meson.build
index 45dff73..116bfa5 100644
--- a/libpldmresponder/meson.build
+++ b/libpldmresponder/meson.build
@@ -25,7 +25,7 @@
 endif
 
 libpldmresponder = library(
-  'libpldmresponder',
+  'pldmresponder',
   sources,
   version: meson.project_version(),
   dependencies: deps,