dect
/
linux-2.6
Archived
13
0
Fork 0

Net: rxrpc: Makefile: Remove deprecated kbuild goal definitions

Changed Makefile to use <modules>-y instead of <modules>-objs
because -objs is deprecated and not mentioned in
Documentation/kbuild/makefiles.txt.

Signed-off-by: Tracey Dent <tdent48227@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Tracey Dent 2010-11-21 15:03:26 +00:00 committed by David S. Miller
parent 094f2faaa2
commit 9ed05ad3c0
1 changed files with 2 additions and 2 deletions

View File

@ -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