Skip to content

Commit f3fd4a3

Browse files
committed
kbuild: remove redundant 'set -e' from filechk_offsets
The filechk macro in scripts/Kbuild.include already sets 'set -e'. Signed-off-by: Masahiro Yamada <[email protected]>
1 parent 392885e commit f3fd4a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/Makefile.lib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ endef
406406
# Use filechk to avoid rebuilds when a header changes, but the resulting file
407407
# does not
408408
define filechk_offsets
409-
(set -e; \
409+
( \
410410
echo "#ifndef $2"; \
411411
echo "#define $2"; \
412412
echo "/*"; \

0 commit comments

Comments
 (0)