diff options
author | Angelo Dureghello <angelo.dureghello@timesys.com> | 2021-11-05 16:20:24 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-11-15 14:33:32 -0500 |
commit | 5130102fc43f7f3a897796b14918305ad96e1b4c (patch) | |
tree | b9f41ab775e0995c22173f56cb596ce6d65ed740 /scripts | |
parent | a5e305256b072d9eea97e106df479704f5b4f24f (diff) | |
download | u-boot-5130102fc43f7f3a897796b14918305ad96e1b4c.tar.gz u-boot-5130102fc43f7f3a897796b14918305ad96e1b4c.tar.bz2 u-boot-5130102fc43f7f3a897796b14918305ad96e1b4c.zip |
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 'scripts')
-rw-r--r-- | scripts/Makefile.autoconf | 2 |
1 files changed, 1 insertions, 1 deletions
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 $@ |