build: add --force option to gzip in Build/gzip
When using pigz, a parallel gzip implementation, the gzip step in the image build for some targets fails, because the image filename already has the .gz extension. This results in an emtpy image file. Fix this by adding the --force option to gzip in the Build/gzip macro. Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be> Tested-by: Martin Schleier <drahemmaps@gmx.net>
This commit is contained in:
parent
858ff4f3e1
commit
138c76332b
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ define Build/lzma-no-dict
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define Build/gzip
|
define Build/gzip
|
||||||
gzip -9n -c $@ $(1) > $@.new
|
gzip --force -9n -c $@ $(1) > $@.new
|
||||||
@mv $@.new $@
|
@mv $@.new $@
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue