diff options
author | Petr Štetiar <ynezz@true.cz> | 2019-11-05 23:57:37 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-06-30 22:12:50 +0200 |
commit | b7bac0737e3227d1b581efc9f8951fcdf7391e6f (patch) | |
tree | 71ded1149b5e4e1af102eba027a4cbefcee1afa2 /include | |
parent | 8a0362c6992d2a432ecb79905531a6c7324fa6a8 (diff) | |
download | upstream-b7bac0737e3227d1b581efc9f8951fcdf7391e6f.tar.gz upstream-b7bac0737e3227d1b581efc9f8951fcdf7391e6f.tar.bz2 upstream-b7bac0737e3227d1b581efc9f8951fcdf7391e6f.zip |
build: image: fix build breakage of some images
Commit 881ed09ee6e2 ("build: create JSON files containing image info")
has removed the crucial empty new line from the image copy step
resulting in the following errors during make function expansion:
GZ_SUFFIX :=
bash: GZ_SUFFIX: command not found
Makefile:86: recipe for target 'openwrt-ath79-generic-tplink_archer-c7-v5-squashfs-sysupgrade.bin' failed
Fixes: 881ed09ee6e2 ("build: create JSON files containing image info")
Signed-off-by: Petr Štetiar <ynezz@true.cz>
(cherry picked from commit 0fb23d67f00a18c3f9e712ca97cfc34b38071f4a)
Diffstat (limited to 'include')
-rw-r--r-- | include/image.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/image.mk b/include/image.mk index 2eedb43753..1e0177c439 100644 --- a/include/image.mk +++ b/include/image.mk @@ -538,6 +538,7 @@ define Device/Build/image SUPPORTED_DEVICES="$(SUPPORTED_DEVICES)" \ $(TOPDIR)/scripts/json_add_image_info.py \ ) + endef define Device/Build/artifact |