From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 29E50A2EDB for ; Wed, 2 Oct 2019 16:24:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EC5F11BF13; Wed, 2 Oct 2019 16:24:27 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id E7CD21BF0B; Wed, 2 Oct 2019 16:24:23 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 3C24818C7780; Wed, 2 Oct 2019 14:24:23 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-157.brq.redhat.com [10.40.204.157]) by smtp.corp.redhat.com (Postfix) with ESMTP id EF8695D9E2; Wed, 2 Oct 2019 14:24:21 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Matan Azrad , Shahaf Shuler Date: Wed, 2 Oct 2019 16:24:10 +0200 Message-Id: <1570026250-3582-1-git-send-email-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.70]); Wed, 02 Oct 2019 14:24:23 +0000 (UTC) Subject: [dpdk-stable] [PATCH] net/mlx4: remove dependency on libmnl in meson X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" There is no dependency on this library for mlx4. Fixes: 1dd7c7e38c19 ("net/mlx4: support meson build") Cc: stable@dpdk.org Signed-off-by: David Marchand --- drivers/net/mlx4/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/mlx4/meson.build b/drivers/net/mlx4/meson.build index efee457..e6795ee 100644 --- a/drivers/net/mlx4/meson.build +++ b/drivers/net/mlx4/meson.build @@ -21,7 +21,7 @@ if pmd_dlopen ] endif -libnames = [ 'mnl', 'mlx4', 'ibverbs' ] +libnames = [ 'mlx4', 'ibverbs' ] libs = [] foreach libname:libnames lib = dependency('lib' + libname, required:false) -- 1.8.3.1