From: Tony Butler Date: Fri, 2 Dec 2022 20:05:08 +0000 (-0800) Subject: build: add gzip to prereq-build.mk X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=f595bebc7fc67255dc05ec4c1b74b0349c1d2aa3;p=openwrt%2Fstaging%2Frobimarko.git 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 --- 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))