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 <seiden@linux.ibm.com>
This commit is contained in:
Steffen Eiden
2023-07-11 10:53:56 +02:00
parent de013d2f04
commit 2ef6f64b1d

View File

@@ -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)