From 45a5f7988655bd86ae35e89bae322215291f9353 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Thu, 31 Aug 2017 14:42:41 +0100 Subject: [PATCH] ip_frag: rename map file to standardized name 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 Reviewed-by: Ferruh Yigit --- lib/librte_ip_frag/Makefile | 2 +- .../{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 4e693bf8f0..2a8c3e3742 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.20.1