Hi all, After merging the tip tree, today's linux-next build (arm multi_v7_defconfig) failed like this: /bin/bash: scripts/atomic/check-atomics.sh: No such file or directory Caused by commit 8d32588077bd ("locking/atomics: Check generated headers are up-to-date") I build with O= I have appplied the following fix patch for today: From: Stephen Rothwell Date: Tue, 6 Nov 2018 11:37:10 +1100 Subject: [PATCH] fix for "locking/atomics: Check generated headers are up-to-date" Signed-off-by: Stephen Rothwell --- Kbuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kbuild b/Kbuild index 47c9fe175bd9..780048056ac5 100644 --- a/Kbuild +++ b/Kbuild @@ -80,7 +80,7 @@ always += old-atomics targets += old-atomics quiet_cmd_atomics = CALL $< - cmd_atomics = $(CONFIG_SHELL) scripts/atomic/check-atomics.sh + cmd_atomics = $(CONFIG_SHELL) $< old-atomics: scripts/atomic/check-atomics.sh FORCE $(call cmd,atomics) -- 2.19.1 -- Cheers, Stephen Rothwell