makefile: add missing semicolons

On some distributions, as Debian GNU 11, this targets fails
with errors.

Signed-off-by: Angelo Dureghello <angelo.dureghello@timesys.com>
This commit is contained in:
Angelo Dureghello
2021-11-05 16:20:24 +01:00
committed by Tom Rini
parent a5e305256b
commit 5130102fc4
2 changed files with 2 additions and 2 deletions

View File

@@ -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 "u-boot.map shows a binary size of $$map_size" >&2 ; \
echo " but u-boot-nodtb.bin shows $$file_size" >&2 ; \ echo " but u-boot-nodtb.bin shows $$file_size" >&2 ; \
exit 1; \ exit 1; \
fi \ fi; \
fi fi
ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy) ifeq ($(CONFIG_INIT_SP_RELATIVE)$(CONFIG_OF_SEPARATE),yy)

View File

@@ -61,7 +61,7 @@ quiet_cmd_autoconf = GEN $@
if [ -n "${KCONFIG_IGNORE_DUPLICATES}" ] || \ if [ -n "${KCONFIG_IGNORE_DUPLICATES}" ] || \
! grep -q "$${line%=*}=" include/config/auto.conf; then \ ! grep -q "$${line%=*}=" include/config/auto.conf; then \
echo "$$line"; \ echo "$$line"; \
fi \ fi; \
done > $@ done > $@
quiet_cmd_u_boot_cfg = CFG $@ quiet_cmd_u_boot_cfg = CFG $@