瀏覽代碼

image-commands.mk: Be consistent in command invocation

Most/all other tools use the staging dir prefix, gzip should as well.

Signed-off-by: Olliver Schinagl <[email protected]>
Acked-by: Christian Marangi <[email protected]>
(cherry picked from commit 47df168dd279d52127f6bbc623e79bdeeb6c8fd4)
Olliver Schinagl 2 年之前
父節點
當前提交
fcff234fd8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/image-commands.mk

+ 1 - 1
include/image-commands.mk

@@ -298,7 +298,7 @@ define Build/fit
 endef
 
 define Build/gzip
-	gzip -f -9n -c $@ $(1) > [email protected]
+	$(STAGING_DIR_HOST)/bin/gzip -f -9n -c $@ $(1) > [email protected]
 	@mv [email protected] $@
 endef