diff options
author | Petr Štetiar <ynezz@true.cz> | 2019-11-05 23:57:37 +0100 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2019-11-08 11:02:18 +0100 |
commit | 0fb23d67f00a18c3f9e712ca97cfc34b38071f4a (patch) | |
tree | c2c23264d92cb92fb3bb2ba581a32ddfce686a37 /include | |
parent | 6ab84579c6a393301d18ab9bbc2b89c3363c937d (diff) | |
download | upstream-0fb23d67f00a18c3f9e712ca97cfc34b38071f4a.tar.gz upstream-0fb23d67f00a18c3f9e712ca97cfc34b38071f4a.tar.bz2 upstream-0fb23d67f00a18c3f9e712ca97cfc34b38071f4a.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>
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 940ae812ea..77d4567197 100644 --- a/include/image.mk +++ b/include/image.mk @@ -597,6 +597,7 @@ define Device/Build/image SUPPORTED_DEVICES="$(SUPPORTED_DEVICES)" \ $(TOPDIR)/scripts/json_add_image_info.py \ ) + endef define Device/Build/artifact |