commit | a499a168f10d3913fbfd01a71ca7c0b207483b6c | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Wed Jul 09 11:27:02 2025 -0400 |
committer | Andrew Jeffery <andrew@codeconstruct.com.au> | Tue Jul 22 00:19:16 2025 +0000 |
tree | 8f2aa094e1472e45f94cc0aa0c530cd6affbfb08 | |
parent | 8e84dc881958da389eb8d00f9f4da3e0f0c101ff [diff] [blame] |
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: I316527fa798ab5acc8569f2e8de932fffdde1070 Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/service_files/meson.build b/service_files/meson.build index baac30f..5b949a2 100644 --- a/service_files/meson.build +++ b/service_files/meson.build
@@ -1,6 +1,6 @@ systemd = dependency('systemd') systemd_system_unit_dir = systemd.get_variable( - 'systemdsystemunitdir', + 'systemd_system_unit_dir', pkgconfig_define: ['prefix', get_option('prefix')], )