Skip to content

Commit 24cc7fb

Browse files
jeffmahoneymichal42
authored andcommitted
x86/kbuild: archscripts depends on scripts_basic
While building the SUSE kernel packages, which build the scripts, make clean, and then build everything, we have been running into spurious build failures. We tracked them down to a simple dependency issue: $ make mrproper CLEAN arch/x86/tools CLEAN scripts/basic $ cp patches/config/x86_64/desktop .config $ make archscripts HOSTCC arch/x86/tools/relocs /bin/sh: scripts/basic/fixdep: No such file or directory make[3]: *** [arch/x86/tools/relocs] Error 1 make[2]: *** [archscripts] Error 2 make[1]: *** [sub-make] Error 2 make: *** [all] Error 2 This was introduced by commit 6520fe5 (x86, realmode: 16-bit real-mode code support for relocs), which added the archscripts dependency to archprepare. This patch adds the scripts_basic dependency to the x86 archscripts. Signed-off-by: Jeff Mahoney <[email protected]> Signed-off-by: Michal Marek <[email protected]>
1 parent c1c1a59 commit 24cc7fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ KBUILD_CFLAGS += $(call cc-option,-mno-avx,)
138138
KBUILD_CFLAGS += $(mflags-y)
139139
KBUILD_AFLAGS += $(mflags-y)
140140

141-
archscripts:
141+
archscripts: scripts_basic
142142
$(Q)$(MAKE) $(build)=arch/x86/tools relocs
143143

144144
###

0 commit comments

Comments
 (0)