From 2ef6f64b1d7a0859de702b8e71e06c76dcbaedcc Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Tue, 11 Jul 2023 10:53:56 +0200 Subject: [PATCH] Makefile: fix build for non-390 architectures The last commit accidentally deleted the TOOLS_DIR for non-s390x architectures. Fixes: de013d2f ("Makefile: add genprotimg to non-s390x architectures target list") Signed-off-by: Steffen Eiden --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85baeafb..b3212d98 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,8 @@ TOOL_DIRS = zipl zdump fdasd dasdfmt dasdview tunedasd \ genprotimg lsstp hsci hsavmcore chreipl-fcp-mpath ap_tools pvattest else BASELIB_DIRS = -LIB_DIRS = genprotimg libpv +LIB_DIRS = libpv +TOOL_DIRS = genprotimg pvattest endif SUB_DIRS = $(BASELIB_DIRS) $(LIB_DIRS) $(TOOL_DIRS)