diff options
| author | Petr Štetiar | 2022-09-13 07:06:50 +0000 |
|---|---|---|
| committer | Petr Štetiar | 2022-09-13 07:14:09 +0000 |
| commit | a575788b8f170be1087444e2e746196128719e21 (patch) | |
| tree | ede4a9d07da50d6eabe73b8668a397793981cee6 | |
| parent | 50a48faa1b8424e6b4b436b7118fffa2cba14b18 (diff) | |
| download | openwrt-a575788b8f170be1087444e2e746196128719e21.tar.gz | |
uboot-mediatek: fix extraneous right parens
Fixes following warning:
Makefile:310: extraneous text after 'ifeq' directive
Signed-off-by: Petr Štetiar <ynezz@true.cz>
| -rw-r--r-- | package/boot/uboot-mediatek/Makefile | 2 |
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 |