[openwrt/openwrt] uboot-mediatek: fix extraneous right parens
LEDE Commits
lede-commits at lists.infradead.org
Tue Sep 13 00:14:31 PDT 2022
ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/a575788b8f170be1087444e2e746196128719e21
commit a575788b8f170be1087444e2e746196128719e21
Author: Petr Štetiar <ynezz at true.cz>
AuthorDate: Tue Sep 13 09:06:50 2022 +0200
uboot-mediatek: fix extraneous right parens
Fixes following warning:
Makefile:310: extraneous text after 'ifeq' directive
Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
package/boot/uboot-mediatek/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
More information about the lede-commits
mailing list