From: Eric Engestrom Date: Sun, 21 Aug 2022 11:58:05 +0000 (+0100) Subject: meson: drop duplicate `lib` in lib name X-Git-Tag: upstream/22.3.5~4475 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3743ea0fad9c18587c314d7cf32a8e90cd20fb6f;p=platform%2Fupstream%2Fmesa.git 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: --- diff --git a/src/broadcom/meson.build b/src/broadcom/meson.build index 2e1145d..2c10e46 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 1d820048..9590ee7 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',