[PATCH] m68k: Drop duplicate "core-y += arch/m68k/" rule causing link failures

From: Geert Uytterhoeven
Date: Wed May 26 2021 - 04:46:10 EST


Makefile:1949: target 'arch/m68k' given more than once in the same rule
[...]
LD vmlinux.o
m68k-linux-gnu-ld: arch/m68k/kernel/entry.o: in function `system_call':
(.text+0x160): multiple definition of `system_call'; arch/m68k/kernel/entry.o:(.text+0x160): first defined here
[...]

All "core-y += arch/<arch>/" rules were dropped from the corresponding
arch/<arch>/Makefiles, but m68k was forgotten.

Reported-by: noreply@xxxxxxxxxxxxxx
Fixes: 7d9677835b10b5de ("kbuild: require all architectures to have arch/$(SRCARCH)/Kbuild")
Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx>
---
arch/m68k/Makefile | 1 -
1 file changed, 1 deletion(-)

diff --git a/arch/m68k/Makefile b/arch/m68k/Makefile
index c54055a3d28450aa..dd0c0ec67f67064d 100644
--- a/arch/m68k/Makefile
+++ b/arch/m68k/Makefile
@@ -97,7 +97,6 @@ head-$(CONFIG_SUN3) := arch/m68k/kernel/sun3-head.o
head-$(CONFIG_M68000) := arch/m68k/68000/head.o
head-$(CONFIG_COLDFIRE) := arch/m68k/coldfire/head.o

-core-y += arch/m68k/
libs-y += arch/m68k/lib/


--
2.25.1