From: Ilias Apalodimas Date: Tue, 20 May 2025 05:21:15 +0000 (+0300) Subject: kbuild: remove redundant 'set -e' from filechk_offsets X-Git-Tag: v2025.10-rc1~118^2~61^2~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14795eba8bb3e138314d10313e95cc0862f98736;p=thirdparty%2Fu-boot.git kbuild: remove redundant 'set -e' from filechk_offsets Backport changes from the kernel commit f3fd4a3f3a38 ("kbuild: remove redundant 'set -e' from filechk_offsets") Signed-off-by: Ilias Apalodimas --- diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib index c3c6c941bef..a2b3b2e6387 100644 --- a/scripts/Makefile.lib +++ b/scripts/Makefile.lib @@ -718,7 +718,7 @@ endef # Use filechk to avoid rebuilds when a header changes, but the resulting file # does not define filechk_offsets - (set -e; \ + ( \ echo "#ifndef $2"; \ echo "#define $2"; \ echo "/*"; \