From e856b6ca14765501a47eb497f7e35dc7efefce5f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Sat, 4 Apr 2026 14:23:10 +0200 Subject: [PATCH] checksyscalls: fail on all intermediate errors MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Make sure that a failure of any intermediate step also fails the overall execution. Link: https://sashiko.dev/#/patchset/20260402-kbuild-missing-syscalls-v3-0-6641be1de2db%40weissschuh.net Signed-off-by: Thomas Weißschuh Link: https://patch.msgid.link/20260404-checksyscalls-set-e-v1-1-206400e78668@weissschuh.net Signed-off-by: Nicolas Schier --- scripts/checksyscalls.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/checksyscalls.sh b/scripts/checksyscalls.sh index 9becaf8d7b785..b2ab3b1d76b84 100755 --- a/scripts/checksyscalls.sh +++ b/scripts/checksyscalls.sh @@ -10,6 +10,8 @@ # checksyscalls.sh gcc gcc-options # +set -e + reference_table="$(dirname $0)/../arch/x86/entry/syscalls/syscall_32.tbl" ignore_list() { -- 2.47.3