aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2022-01-19 11:09:07 -0800
committerDylan Baker <dylan@pnwbakers.com>2022-01-20 10:08:23 -0800
commit52b96a6fbfeb107b447a722c7eb9da0756ae2d21 (patch)
tree5aee8c422fa2b0c432f17f6a858725b52cec6a9c
parenteaf234c1489f53035fba1698c1a27781f5755be6 (diff)
downloadlibdrm-52b96a6fbfeb107b447a722c7eb9da0756ae2d21.tar.gz
meson: use more standard formatting for better readability
Signed-off-by: Dylan Baker <dylan@pnwbakers.com> Reviewed-by: Simon Ser <contact@emersion.fr>
-rw-r--r--meson.build6
1 files changed, 4 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 646800ef..5c4618ab 100644
--- a/meson.build
+++ b/meson.build
@@ -54,8 +54,10 @@ intel_atomics = false
lib_atomics = false
python3 = import('python').find_installation()
-format_mod_static_table = custom_target('format_mod_static_table',
- output : 'generated_static_table_fourcc.h', input: 'include/drm/drm_fourcc.h',
+format_mod_static_table = custom_target(
+ 'format_mod_static_table',
+ output : 'generated_static_table_fourcc.h',
+ input : 'include/drm/drm_fourcc.h',
command : [python3, files('gen_table_fourcc.py'), '@INPUT@', '@OUTPUT@'])
dep_atomic_ops = dependency('atomic_ops', required : false)