meson: Use consistent style
Currently the meosn build has a mix of two styles:
arg : [foo, ...
bar],
and
arg : [
foo, ...,
bar,
]
For consistency let's pick one. I've picked the later style, which I
think is more readable, and is more common in the mesa code base.
v2: - fix commit message
Acked-by: Eric Engestrom <eric.engestrom@imgtec.com>
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
This commit is contained in:
@@ -29,10 +29,7 @@ if with_gallium_vc5
|
||||
libbroadcom_vc5 = static_library(
|
||||
'libbroadcom_vc5',
|
||||
[
|
||||
files(
|
||||
'common/v3d_debug.c',
|
||||
'clif/clif_dump.c',
|
||||
),
|
||||
files('common/v3d_debug.c', 'clif/clif_dump.c'),
|
||||
v3d_xml_pack,
|
||||
],
|
||||
include_directories : [inc_common, inc_broadcom, inc_src],
|
||||
|
||||
Reference in New Issue
Block a user