Browse Source

uboot-mediatek: fix extraneous right parens

Fixes following warning:

 Makefile:310: extraneous text after 'ifeq' directive

Signed-off-by: Petr Štetiar <[email protected]>
Petr Štetiar 3 years ago
parent
commit
a575788b8f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      package/boot/uboot-mediatek/Makefile

+ 1 - 1
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