aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2022-12-22 13:02:07 +0100
committerHauke Mehrtens <hauke@hauke-m.de>2022-12-22 13:20:39 +0100
commit275c51bf4002eefd85d66fd82d2f2f93da31e8b8 (patch)
treed36f41b89276a66e732b32b6388673e7770c0032 /include
parentfec4fb3a569b07d4cd77d844c98bf3902fee2ed1 (diff)
downloadupstream-275c51bf4002eefd85d66fd82d2f2f93da31e8b8.tar.gz
upstream-275c51bf4002eefd85d66fd82d2f2f93da31e8b8.tar.bz2
upstream-275c51bf4002eefd85d66fd82d2f2f93da31e8b8.zip
Revert "image-commands.mk: Be consistent in command invocation"
This reverts commit fcff234fd89e8b24aa3ad2f352ddbb5304c38dc1. $(STAGING_DIR_HOST)/bin/gzip is not available in openwrt-22.03. The change broke the build because the build process could not find this file. For example ath79/generic netgear_wndap360 was affected. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
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 b4e1a67342..402e3d71ed 100644
--- a/include/image-commands.mk
+++ b/include/image-commands.mk
@@ -298,7 +298,7 @@ define Build/fit
endef
define Build/gzip
- $(STAGING_DIR_HOST)/bin/gzip -f -9n -c $@ $(1) > $@.new
+ gzip -f -9n -c $@ $(1) > $@.new
@mv $@.new $@
endef