From fcb89662e05a20673852b47eac1a1ba6d710ad5a Mon Sep 17 00:00:00 2001 From: Sertonix Date: Tue, 28 Oct 2025 13:16:22 +0100 Subject: [PATCH] chreipl-fcp-mpath: Use sha256sum -c instead of --check MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The --check long option is not available in some sha256sum implementations like busybox. Github-ID: https://github.com/ibm-s390-linux/s390-tools/pull/193 Signed-off-by: Sertonix Reviewed-by: Steffen Eiden Reviewed-by: Jan Höppner Signed-off-by: Jan Höppner --- chreipl-fcp-mpath/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chreipl-fcp-mpath/Makefile b/chreipl-fcp-mpath/Makefile index cb7f27ba..6bd12d55 100644 --- a/chreipl-fcp-mpath/Makefile +++ b/chreipl-fcp-mpath/Makefile @@ -129,7 +129,7 @@ else # $(ENABLE_DOC) != 1 # freshness of the man page can be checked, even if `pandoc` is not available, # or ENABLE_DOC disabled. -MANPAGE_FRESH := $(shell sha256sum --check .chreipl-fcp-mpath.7.cksum >/dev/null && echo 1 || echo 0) +MANPAGE_FRESH := $(shell sha256sum -c .chreipl-fcp-mpath.7.cksum >/dev/null && echo 1 || echo 0) ifeq ($(MANPAGE_FRESH),0) $(warning chreipl-fcp-mpath.7 is outdated, please regenerate it by calling `make ENABLE_DOC=1`) endif