diff options
author | Dylan Baker <[email protected]> | 2017-12-11 15:56:08 -0800 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-01-11 15:40:02 -0800 |
commit | fbf192a67ed2e3d4f614b49fe008c980c5f7c9a2 (patch) | |
tree | d0320f703e9b2ffc4096720db4784cf10ea882ef /src/broadcom | |
parent | c3d802d68e222bf4030ab4e487501dfbcb34608d (diff) |
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 <[email protected]>
Signed-off-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/broadcom')
-rw-r--r-- | src/broadcom/meson.build | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/broadcom/meson.build b/src/broadcom/meson.build index 6072fd1b997..f2a5e53c0a5 100644 --- a/src/broadcom/meson.build +++ b/src/broadcom/meson.build @@ -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], |