From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH 1/4] ip_frag: change map filename to standardized value Date: Thu, 31 Aug 2017 14:42:41 +0100 Message-ID: <20170831134244.35215-2-bruce.richardson@intel.com> References: <20170831134244.35215-1-bruce.richardson@intel.com> Cc: dev@dpdk.org, Bruce Richardson To: konstantin.ananyev@intel.com, thomas@monjalon.net, john.griffin@intel.com, fiona.trahe@intel.com Return-path: 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) In-Reply-To: <20170831134244.35215-1-bruce.richardson@intel.com> 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 -- 2.13.5