makefile: add missing semicolons
authorAngelo Dureghello <angelo.dureghello@timesys.com>
Fri, 5 Nov 2021 15:20:24 +0000 (16:20 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 15 Nov 2021 19:33:32 +0000 (14:33 -0500)
On some distributions, as Debian GNU 11, this targets fails
with errors.

Signed-off-by: Angelo Dureghello <angelo.dureghello@timesys.com>
Makefile
scripts/Makefile.autoconf

index 0220e8d..5064996 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1246,7 +1246,7 @@ binary_size_check: u-boot-nodtb.bin FORCE
                        echo "u-boot.map shows a binary size of $$map_size" >&2 ; \
                        echo "  but u-boot-nodtb.bin shows $$file_size" >&2 ; \
                        exit 1; \
-               fi \
+               fi; \
        fi
 
 ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy)
index 0bfc1b2..8a3efdb 100644 (file)
@@ -61,7 +61,7 @@ quiet_cmd_autoconf = GEN     $@
                        if [ -n "${KCONFIG_IGNORE_DUPLICATES}" ] ||                     \
                           ! grep -q "$${line%=*}=" include/config/auto.conf; then      \
                                echo "$$line";                                          \
-                       fi                                                              \
+                       fi;                                                             \
                done > $@
 
 quiet_cmd_u_boot_cfg = CFG     $@