build: react to changed location of config data

The pldm recipes will install read-only config data to /usr/share
instead of /etc, for better image upgrade/downgrade compatibility. For
eg https://gerrit.openbmc-project.xyz/#/c/openbmc/meta-ibm/+/26068/.
This commit fixes up corresponding paths in meson.build.

Signed-off-by: Deepak Kodihalli <dkodihal@in.ibm.com>
Change-Id: I29242944635758e4813d1d5e0c359e5f0a6d203d
diff --git a/meson.build b/meson.build
index 1a0b5de..cafcba9 100644
--- a/meson.build
+++ b/meson.build
@@ -14,11 +14,11 @@
 add_project_arguments('-Wno-psabi', language: 'cpp')
 
 conf_data = configuration_data()
-conf_data.set_quoted('BIOS_JSONS_DIR', '/etc/default/obmc/pldm/bios')
+conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios')
 conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios')
-conf_data.set_quoted('PDR_JSONS_DIR', '/etc/default/obmc/pldm/pdr')
+conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr')
 if get_option('oem-ibm').enabled()
-  conf_data.set_quoted('FILE_TABLE_JSON', '/etc/default/obmc/pldm/fileTable.json')
+  conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
   add_global_arguments('-DOEM_IBM', language : 'c')
   add_global_arguments('-DOEM_IBM', language : 'cpp')
 endif