aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorOlliver Schinagl <oliver@schinagl.nl>2022-12-14 11:39:17 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2022-12-22 00:14:30 +0100
commitfcff234fd89e8b24aa3ad2f352ddbb5304c38dc1 (patch)
treed363084f813b709ff0f0e33a1473e35be816d624 /include
parentbe7b97d8730ff51ba86db8ed4c84947e30047478 (diff)
downloadupstream-fcff234fd89e8b24aa3ad2f352ddbb5304c38dc1.tar.gz
upstream-fcff234fd89e8b24aa3ad2f352ddbb5304c38dc1.tar.bz2
upstream-fcff234fd89e8b24aa3ad2f352ddbb5304c38dc1.zip
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 <oliver@schinagl.nl> Acked-by: Christian Marangi <ansuelsmth@gmail.com> (cherry picked from commit 47df168dd279d52127f6bbc623e79bdeeb6c8fd4)
Diffstat (limited to 'include')
-rw-r--r--include/image-commands.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image-commands.mk b/include/image-commands.mk
index 402e3d71ed..b4e1a67342 100644
--- a/include/image-commands.mk
+++ b/include/image-commands.mk
@@ -298,7 +298,7 @@ define Build/fit
endef
define Build/gzip
- gzip -f -9n -c $@ $(1) > $@.new
+ $(STAGING_DIR_HOST)/bin/gzip -f -9n -c $@ $(1) > $@.new
@mv $@.new $@
endef