From 3743ea0fad9c18587c314d7cf32a8e90cd20fb6f Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Sun, 21 Aug 2022 12:58:05 +0100 Subject: [PATCH] meson: drop duplicate `lib` in lib name The default lib prefix is `lib`, so adding `lib` to the lib name just results in `liblibbroadcom_v3d.a` for instance. Those are internal, build-temporary static libraries that end up being linked into the real user-visible libraries, so it doesn't really matter, but we might as well just clean up their names anyway. Reviewed-by: Yonggang Luo Reviewed-by: Juan A. Suarez Part-of: --- src/broadcom/meson.build | 4 ++-- src/freedreno/decode/meson.build | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/broadcom/meson.build b/src/broadcom/meson.build index 2e1145dd0c0..2c10e46b188 100644 --- a/src/broadcom/meson.build +++ b/src/broadcom/meson.build @@ -38,7 +38,7 @@ endif per_version_libs = [] foreach ver : v3d_versions per_version_libs += static_library( - 'libbroadcom-v' + ver, + 'broadcom-v' + ver, [ files('clif/v3dx_dump.c'), v3d_xml_pack @@ -69,7 +69,7 @@ libv3d_neon = static_library( ) libbroadcom_v3d = static_library( - 'libbroadcom_v3d', + 'broadcom_v3d', [ files('common/v3d_debug.c', 'common/v3d_device_info.c', 'clif/clif_dump.c', 'common/v3d_util.c'), v3d_xml_pack, diff --git a/src/freedreno/decode/meson.build b/src/freedreno/decode/meson.build index 1d820048525..9590ee7c7e7 100644 --- a/src/freedreno/decode/meson.build +++ b/src/freedreno/decode/meson.build @@ -56,7 +56,7 @@ libfreedreno_cffdec = static_library( if dep_libarchive.found() libfreedreno_io = static_library( - 'libfreedreno_io', + 'freedreno_io', [ 'io.c', 'io.h',