From deae2fadecba7916f109a2d62f31176cf1d324a1 Mon Sep 17 00:00:00 2001 From: Harish Date: Tue, 14 Jul 2020 21:30:24 +0530 Subject: [PATCH] Fix: dev-dax engine building with make With recent changes to Makefile dev-dax skips building. This patch fixes that. Signed-off-by: Harish --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8f8d9b9a..f374ac84 100644 --- a/Makefile +++ b/Makefile @@ -173,8 +173,8 @@ ifdef CONFIG_PMEMBLK ENGINES += pmemblk endif ifdef CONFIG_LINUX_DEVDAX - devdax_SRCS = engines/dev-dax.c - devdax_LIBS = -lpmem + dev-dax_SRCS = engines/dev-dax.c + dev-dax_LIBS = -lpmem ENGINES += dev-dax endif ifdef CONFIG_LIBPMEM -- 2.25.1