From 450b83bbd48a8fcab3ab8b7eaf595f3964ce05c2 Mon Sep 17 00:00:00 2001 From: Ali Alnubani Date: Mon, 26 Oct 2020 11:20:35 +0200 Subject: [PATCH] common/mlx5: fix glue library name The MLX5 glue library wasn't following the standard 'librte__.so' naming. Fixes: a20b2c01a7a1 ("build: standardize component names and defines") Signed-off-by: Ali Alnubani Acked-by: Matan Azrad --- drivers/common/mlx5/linux/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/common/mlx5/linux/meson.build b/drivers/common/mlx5/linux/meson.build index 9ef8e181d7..0d437f8fb0 100644 --- a/drivers/common/mlx5/linux/meson.build +++ b/drivers/common/mlx5/linux/meson.build @@ -5,7 +5,7 @@ includes += include_directories('.') static_ibverbs = (get_option('ibverbs_link') == 'static') dlopen_ibverbs = (get_option('ibverbs_link') == 'dlopen') -LIB_GLUE_BASE = 'librte_pmd_mlx5_glue.so' +LIB_GLUE_BASE = 'librte_common_mlx5_glue.so' LIB_GLUE_VERSION = '20.02.0' LIB_GLUE = LIB_GLUE_BASE + '.' + LIB_GLUE_VERSION if dlopen_ibverbs @@ -195,7 +195,7 @@ configure_file(output : 'mlx5_autoconf.h', configuration : config) # Build Glue Library if dlopen_ibverbs dlopen_name = 'mlx5_glue' - dlopen_lib_name = 'rte_pmd_@0@'.format(dlopen_name) + dlopen_lib_name = 'rte_common_' + dlopen_name dlopen_so_version = LIB_GLUE_VERSION dlopen_sources = files('mlx5_glue.c') dlopen_install_dir = [ eal_pmd_path + '-glue' ] -- 2.20.1