meson: reformat with meson formatter
Apply the `meson format` results.
Change-Id: I0931eb90e92b905028109030d225123a822597df
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/service_files/meson.build b/service_files/meson.build
index 30a59a9..4c420d7 100644
--- a/service_files/meson.build
+++ b/service_files/meson.build
@@ -1,17 +1,17 @@
# Map of unit file to meson option which controls whether file gets installed
unit_files = [
- ['smbios-mdrv2.service', ''],
- ['xyz.openbmc_project.cpuinfo.service', 'cpuinfo'],
+ ['smbios-mdrv2.service', ''],
+ ['xyz.openbmc_project.cpuinfo.service', 'cpuinfo'],
]
systemd_dep = dependency('systemd')
systemd_system_unitdir = systemd_dep.get_variable(
- 'systemd_system_unit_dir',
- pkgconfig_define: ['rootprefix', get_option('prefix')]
- )
+ 'systemd_system_unit_dir',
+ pkgconfig_define: ['rootprefix', get_option('prefix')],
+)
foreach u : unit_files
- if u[1] == '' or get_option(u[1]).allowed()
- install_data(u[0], install_dir: systemd_system_unitdir)
- endif
+ if u[1] == '' or get_option(u[1]).allowed()
+ install_data(u[0], install_dir: systemd_system_unitdir)
+ endif
endforeach