From patchwork Mon Aug 14 09:51:52 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 27559 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 7519B99FC; Mon, 14 Aug 2017 12:04:12 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 04EB69957 for ; Mon, 14 Aug 2017 12:03:37 +0200 (CEST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Aug 2017 03:03:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,372,1498546800"; d="scan'208";a="118723846" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by orsmga004.jf.intel.com with ESMTP; 14 Aug 2017 03:03:36 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: thomas@monjalon.net, Bruce Richardson Date: Mon, 14 Aug 2017 10:51:52 +0100 Message-Id: <20170814095208.166496-25-bruce.richardson@intel.com> X-Mailer: git-send-email 2.13.4 In-Reply-To: <20170814095208.166496-1-bruce.richardson@intel.com> References: <20170814095208.166496-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [RFCv2 24/40] build: tweak naming of pmd dependencies X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Bruce Richardson --- drivers/mempool/meson.build | 2 +- drivers/net/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/mempool/meson.build b/drivers/mempool/meson.build index 869e75cb7..1d003b757 100644 --- a/drivers/mempool/meson.build +++ b/drivers/mempool/meson.build @@ -91,7 +91,7 @@ foreach drv:mempool_drivers # create a dependency object and add it to the global dictionary so # testpmd or other built-in apps can find it if necessary - set_variable('dep_pmd_@0@'.format(drv), + set_variable('dep_rte_mempool_@0@'.format(drv), declare_dependency(link_with: lib, include_directories: includes)) endforeach diff --git a/drivers/net/meson.build b/drivers/net/meson.build index 6b9177c05..07f3f7969 100644 --- a/drivers/net/meson.build +++ b/drivers/net/meson.build @@ -103,7 +103,7 @@ foreach drv:net_drivers # create a dependency object and add it to the global dictionary so # testpmd or other built-in apps can find it if necessary - set_variable('dep_pmd_@0@'.format(drv), + set_variable('dep_rte_pmd_@0@'.format(drv), declare_dependency(link_with: lib, include_directories: includes)) endforeach