From f595bebc7fc67255dc05ec4c1b74b0349c1d2aa3 Mon Sep 17 00:00:00 2001 From: Tony Butler Date: Fri, 2 Dec 2022 12:05:08 -0800 Subject: [PATCH] build: add gzip to prereq-build.mk gzip has never been checked for, a system without it would be rare, fix it anyway Signed-off-by: Tony Butler --- include/prereq-build.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/prereq-build.mk b/include/prereq-build.mk index c5c2f1c8bb..9c4ef547ad 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -149,6 +149,9 @@ $(eval $(call SetupHostCommand,stat,Cannot find a file stat utility, \ gstat -c%s $(TOPDIR)/Makefile, \ stat -c%s $(TOPDIR)/Makefile)) +$(eval $(call SetupHostCommand,gzip,Please install 'gzip', \ + gzip --version &1 | grep zipfile, \ unzip))