From: Petr Štetiar Date: Tue, 13 Sep 2022 07:06:50 +0000 (+0200) Subject: uboot-mediatek: fix extraneous right parens X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=a575788b8f170be1087444e2e746196128719e21;p=openwrt%2Fstaging%2Fnbd.git uboot-mediatek: fix extraneous right parens Fixes following warning: Makefile:310: extraneous text after 'ifeq' directive Signed-off-by: Petr Štetiar --- 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