From: Ali Alnubani Date: Mon, 26 Oct 2020 09:20:34 +0000 (+0200) Subject: net/mlx4: fix glue library name X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=63c3ebfa7ba1c0dc81fa90732846f41cc3117ed6;p=dpdk.git net/mlx4: fix glue library name The MLX4 library wasn't being successfully initialized with -Dibverbs_link=dlopen because it expected a shared object file with a different name. Fixes: a20b2c01a7a1 ("build: standardize component names and defines") Signed-off-by: Ali Alnubani Acked-by: Matan Azrad --- diff --git a/drivers/net/mlx4/meson.build b/drivers/net/mlx4/meson.build index 4040065150..c22a88875f 100644 --- a/drivers/net/mlx4/meson.build +++ b/drivers/net/mlx4/meson.build @@ -10,7 +10,7 @@ endif static_ibverbs = (get_option('ibverbs_link') == 'static') dlopen_ibverbs = (get_option('ibverbs_link') == 'dlopen') -LIB_GLUE_BASE = 'librte_pmd_mlx4_glue.so' +LIB_GLUE_BASE = 'librte_net_mlx4_glue.so' LIB_GLUE_VERSION = '18.02.0' LIB_GLUE = LIB_GLUE_BASE + '.' + LIB_GLUE_VERSION if dlopen_ibverbs