[SPARC]: block/ needed in final image link

With this fix, sparc links vmlinuz again using crosstool. Without this
fix, the final link fails missing several dozen dozen symbols, beginning
with:

kernel/built-in.o(.text+0x6fd0): In function `do_exit':
: undefined reference to `exit_io_context'

(exit_io_context is defined in block/ll_rw_blk.c).

Signed-off-by: Paul Jackson <pj@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Paul Jackson and committed by David S. Miller 1df2ab48 1d66a79d

+1 -1
+1 -1
arch/sparc/Makefile
··· 34 34 # Renaming is done to avoid confusing pattern matching rules in 2.5.45 (multy-) 35 35 INIT_Y := $(patsubst %/, %/built-in.o, $(init-y)) 36 36 CORE_Y := $(core-y) 37 - CORE_Y += kernel/ mm/ fs/ ipc/ security/ crypto/ 37 + CORE_Y += kernel/ mm/ fs/ ipc/ security/ crypto/ block/ 38 38 CORE_Y := $(patsubst %/, %/built-in.o, $(CORE_Y)) 39 39 DRIVERS_Y := $(patsubst %/, %/built-in.o, $(drivers-y)) 40 40 NET_Y := $(patsubst %/, %/built-in.o, $(net-y))