From patchwork Thu Aug 31 13:42:41 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 28157 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 1CFA92C15; Thu, 31 Aug 2017 15:53:49 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id F3955FE5 for ; Thu, 31 Aug 2017 15:53:46 +0200 (CEST) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga105.jf.intel.com with ESMTP; 31 Aug 2017 06:53:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,453,1498546800"; d="scan'208";a="306555584" 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:43 -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:41 +0100 Message-Id: <20170831134244.35215-2-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 1/4] ip_frag: change map filename to standardized value 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" The filenames of the linker map files for DPDK libraries, all follow a standard format: rte__version.map. The ip_frag version, however, was missing an underscore in the name, so was non-standard. By changing this, we no longer need the build system to explicitly be given the name of the mapfile, as it can determine it from the directory/library name. Signed-off-by: Bruce Richardson --- lib/librte_ip_frag/Makefile | 2 +- lib/librte_ip_frag/{rte_ipfrag_version.map => rte_ip_frag_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename lib/librte_ip_frag/{rte_ipfrag_version.map => rte_ip_frag_version.map} (100%) diff --git a/lib/librte_ip_frag/Makefile b/lib/librte_ip_frag/Makefile index 4e693bf8f..2a8c3e374 100644 --- a/lib/librte_ip_frag/Makefile +++ b/lib/librte_ip_frag/Makefile @@ -37,7 +37,7 @@ LIB = librte_ip_frag.a CFLAGS += -O3 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR) -EXPORT_MAP := rte_ipfrag_version.map +EXPORT_MAP := rte_ip_frag_version.map LIBABIVER := 1 diff --git a/lib/librte_ip_frag/rte_ipfrag_version.map b/lib/librte_ip_frag/rte_ip_frag_version.map similarity index 100% rename from lib/librte_ip_frag/rte_ipfrag_version.map rename to lib/librte_ip_frag/rte_ip_frag_version.map