From patchwork Thu Aug 31 13:42:43 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 28159 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 38420325C; Thu, 31 Aug 2017 15:53:57 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 9AAF3378E for ; Thu, 31 Aug 2017 15:53:55 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 31 Aug 2017 06:53:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,453,1498546800"; d="scan'208";a="306555605" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by fmsmga004.fm.intel.com with ESMTP; 31 Aug 2017 06:53:53 -0700 From: Bruce Richardson To: konstantin.ananyev@intel.com, thomas@monjalon.net, john.griffin@intel.com, fiona.trahe@intel.com Cc: dev@dpdk.org, Bruce Richardson Date: Thu, 31 Aug 2017 14:42:43 +0100 Message-Id: <20170831134244.35215-4-bruce.richardson@intel.com> X-Mailer: git-send-email 2.13.5 In-Reply-To: <20170831134244.35215-1-bruce.richardson@intel.com> References: <20170831134244.35215-1-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH 3/4] ether: rename version file to match library name 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" While almost all libraries have the library name match the directory name, some libraries and drivers do not. For those that don't, some have the version filename use the libname, e.g. null_crypto, others have it use the directory name, e.g. ether. Using the library name seems the better standard to follow, so rename rte_ether_version.map to rte_ethdev_version.map. Signed-off-by: Bruce Richardson --- lib/librte_ether/Makefile | 2 +- lib/librte_ether/{rte_ether_version.map => rte_ethdev_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/librte_ether/{rte_ether_version.map => rte_ethdev_version.map} (100%) diff --git a/lib/librte_ether/Makefile b/lib/librte_ether/Makefile index db692ae4d..27d9766a8 100644 --- a/lib/librte_ether/Makefile +++ b/lib/librte_ether/Makefile @@ -39,7 +39,7 @@ LIB = librte_ethdev.a CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) -EXPORT_MAP := rte_ether_version.map +EXPORT_MAP := rte_ethdev_version.map LIBABIVER := 6 diff --git a/lib/librte_ether/rte_ether_version.map b/lib/librte_ether/rte_ethdev_version.map similarity index 100% rename from lib/librte_ether/rte_ether_version.map rename to lib/librte_ether/rte_ethdev_version.map