summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAngelo Dureghello <angelo.dureghello@timesys.com>2021-11-05 18:20:24 +0300
committerTom Rini <trini@konsulko.com>2021-11-15 22:33:32 +0300
commit5130102fc43f7f3a897796b14918305ad96e1b4c (patch)
treeb9f41ab775e0995c22173f56cb596ce6d65ed740 /Makefile
parenta5e305256b072d9eea97e106df479704f5b4f24f (diff)
downloadu-boot-5130102fc43f7f3a897796b14918305ad96e1b4c.tar.xz
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0220e8ded9..50649963a4 100644
--- 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)