build: rename dependency variable

Per [1], the conventions for dependency variables are to
be named '<project or lib>_dep'.  This allows consistency
when using this project as a meson-subproject elsewhere.

Switch the name from 'libpldm' to 'libpldm_dep'.

1. https://mesonbuild.com/Subprojects.html#naming-convention-for-dependency-variables

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: I98c8e2148610b45755b45029d1d38206bac5b885
diff --git a/softoff/meson.build b/softoff/meson.build
index 0ef11f1..12c7e00 100644
--- a/softoff/meson.build
+++ b/softoff/meson.build
@@ -1,5 +1,5 @@
 deps = [
-    libpldm,
+    libpldm_dep,
     libpldmutils,
     sdeventplus,
     sdbusplus,