Format meson files with meson.format
Meson 1.5.0 introduced a new feature to format all the meson
files. Formatting all the meson files is now as simple as running
`meson format -i -r` command in the repository root folder.
more details : https://mesonbuild.com/Commands.html#format
Change-Id: I9c5468cc502ae78b7a055e2de2a10296930cb9ec
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
diff --git a/oem/ibm/service_files/meson.build b/oem/ibm/service_files/meson.build
index c0f0314..1a2a817 100644
--- a/oem/ibm/service_files/meson.build
+++ b/oem/ibm/service_files/meson.build
@@ -1,12 +1,12 @@
subdir('scripts')
filesystem.copyfile(
- 'pldm-create-phyp-nvram.service',
- install: true,
- install_dir: systemd_system_unit_dir
+ 'pldm-create-phyp-nvram.service',
+ install: true,
+ install_dir: systemd_system_unit_dir,
)
filesystem.copyfile(
- 'pldm-create-phyp-nvram-cksum.service',
- install: true,
- install_dir: systemd_system_unit_dir,
+ 'pldm-create-phyp-nvram-cksum.service',
+ install: true,
+ install_dir: systemd_system_unit_dir,
)
diff --git a/oem/ibm/service_files/scripts/meson.build b/oem/ibm/service_files/scripts/meson.build
index 35b2626..40742b0 100644
--- a/oem/ibm/service_files/scripts/meson.build
+++ b/oem/ibm/service_files/scripts/meson.build
@@ -1,5 +1,4 @@
-install_data([
- 'create-NVRAM-file',
- 'create-NVRAM-cksum-file'],
- install_dir: get_option('bindir')
+install_data(
+ ['create-NVRAM-file', 'create-NVRAM-cksum-file'],
+ install_dir: get_option('bindir'),
)