aboutsummaryrefslogtreecommitdiffstats
path: root/package/boot/uboot-mediatek
diff options
context:
space:
mode:
authorPetr Štetiar <ynezz@true.cz>2022-09-13 09:06:50 +0200
committerPetr Štetiar <ynezz@true.cz>2022-09-13 09:14:09 +0200
commita575788b8f170be1087444e2e746196128719e21 (patch)
treeede4a9d07da50d6eabe73b8668a397793981cee6 /package/boot/uboot-mediatek
parent50a48faa1b8424e6b4b436b7118fffa2cba14b18 (diff)
downloadupstream-a575788b8f170be1087444e2e746196128719e21.tar.gz
upstream-a575788b8f170be1087444e2e746196128719e21.tar.bz2
upstream-a575788b8f170be1087444e2e746196128719e21.zip
uboot-mediatek: fix extraneous right parens
Fixes following warning: Makefile:310: extraneous text after 'ifeq' directive Signed-off-by: Petr Štetiar <ynezz@true.cz>
Diffstat (limited to 'package/boot/uboot-mediatek')
-rw-r--r--package/boot/uboot-mediatek/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/uboot-mediatek/Makefile b/package/boot/uboot-mediatek/Makefile
index 7bfc8fd64b..7e813b2a5e 100644
--- a/package/boot/uboot-mediatek/Makefile
+++ b/package/boot/uboot-mediatek/Makefile
@@ -291,7 +291,7 @@ endef
define Build/Compile
$(call Build/Compile/U-Boot)
-ifeq ($(UBOOT_IMAGE),u-boot.fip))
+ifeq ($(UBOOT_IMAGE),u-boot.fip)
$(call Build/fip-image)
endif
endef