diff mbox series

makefile: add missing semicolons

Message ID 20211105152024.1515242-1-angelo.dureghello@timesys.com
State Accepted
Commit 5130102fc43f7f3a897796b14918305ad96e1b4c
Delegated to: Tom Rini
Headers show
Series makefile: add missing semicolons | expand

Commit Message

Angelo Dureghello Nov. 5, 2021, 3:20 p.m. UTC
On some distributions, as Debian GNU 11, this targets fails
with errors.

Signed-off-by: Angelo Dureghello <angelo.dureghello@timesys.com>
---
 Makefile                  | 2 +-
 scripts/Makefile.autoconf | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Tom Rini Nov. 16, 2021, 7:25 p.m. UTC | #1
On Fri, Nov 05, 2021 at 04:20:24PM +0100, Angelo Dureghello wrote:

> On some distributions, as Debian GNU 11, this targets fails
> with errors.
> 
> Signed-off-by: Angelo Dureghello <angelo.dureghello@timesys.com>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index c45da3ad88..1a1d1b0426 100644
--- a/Makefile
+++ b/Makefile
@@ -1245,7 +1245,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)
diff --git a/scripts/Makefile.autoconf b/scripts/Makefile.autoconf
index 0bfc1b2a62..8a3efdb2db 100644
--- a/scripts/Makefile.autoconf
+++ b/scripts/Makefile.autoconf
@@ -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     $@