meson: use non-deprecated systemd packageconfig

Systemd's packageconfig file has both `systemdsystemunitdir` and
`systemd_system_unit_dir` defined.  The non-underscore one appears
to be a deprecated alias[1].  Move to the non-deprecated /
underscore-separated variant.

[1]: https://github.com/systemd/systemd/commit/4908de44b0a0409f84a7cdc5641b114d6ce8ba03

Change-Id: If2ffa582178c7a31a0f83b6566de5df5b17e9158
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/service_files/meson.build b/service_files/meson.build
index 7b105d2..f7ed66a 100644
--- a/service_files/meson.build
+++ b/service_files/meson.build
@@ -6,5 +6,5 @@
     output: 'xyz.openbmc_project.bios_bmc_smm_error_logger.service',
     configuration: conf_data,
     install: true,
-    install_dir: systemd.get_variable('systemdsystemunitdir'),
+    install_dir: systemd.get_variable('systemd_system_unit_dir'),
 )