From: Mathew McBride Date: Wed, 28 Mar 2018 02:34:52 +0000 (+1100) Subject: build: use busybox gzip compatible force option X-Git-Tag: v19.07.0-rc1~3686 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=fba168f5745acac95db519a9984b62e3e508df6a;hp=39e87e0ffc4eabf27d25459a369be425e9ef0474 build: use busybox gzip compatible force option commit 138c763 ("build: add --force option to gzip in Build/gzip") added the --force flag to the gzip invocation. Under environments with busybox gzip (e.g Alpine Linux), this fails as busybox only recognizes "-f". Signed-off-by: Mathew McBride --- diff --git a/include/image-commands.mk b/include/image-commands.mk index a848655399..e0322080e9 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -135,7 +135,7 @@ define Build/lzma-no-dict endef define Build/gzip - gzip --force -9n -c $@ $(1) > $@.new + gzip -f -9n -c $@ $(1) > $@.new @mv $@.new $@ endef