From: Tracey Dent Date: Sun, 21 Nov 2010 15:03:26 +0000 (+0000) Subject: Net: rxrpc: Makefile: Remove deprecated kbuild goal definitions X-Git-Tag: v3.0~2504^2~480 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ed05ad3c0629f434b18d20c51162f9bbb4f5d31;p=platform%2Fkernel%2Flinux-amlogic.git Net: rxrpc: Makefile: Remove deprecated kbuild goal definitions Changed Makefile to use -y instead of -objs because -objs is deprecated and not mentioned in Documentation/kbuild/makefiles.txt. Signed-off-by: Tracey Dent Signed-off-by: David S. Miller --- diff --git a/net/rxrpc/Makefile b/net/rxrpc/Makefile index c46867c..d1c3429 100644 --- a/net/rxrpc/Makefile +++ b/net/rxrpc/Makefile @@ -2,7 +2,7 @@ # Makefile for Linux kernel RxRPC # -af-rxrpc-objs := \ +af-rxrpc-y := \ af_rxrpc.o \ ar-accept.o \ ar-ack.o \ @@ -21,7 +21,7 @@ af-rxrpc-objs := \ ar-transport.o ifeq ($(CONFIG_PROC_FS),y) -af-rxrpc-objs += ar-proc.o +af-rxrpc-y += ar-proc.o endif obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o