diff options
author | Tracey Dent <tdent48227@gmail.com> | 2010-11-21 10:03:26 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-22 11:16:15 -0500 |
commit | 9ed05ad3c0629f434b18d20c51162f9bbb4f5d31 (patch) | |
tree | f83250115f3ed2aa302115a07a3992d1faaebad9 /net/rxrpc | |
parent | 094f2faaa2c4973e50979158f655a1d31a97ba98 (diff) |
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>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rxrpc/Makefile b/net/rxrpc/Makefile index c46867c61c98..d1c3429b69ed 100644 --- a/net/rxrpc/Makefile +++ b/net/rxrpc/Makefile | |||
@@ -2,7 +2,7 @@ | |||
2 | # Makefile for Linux kernel RxRPC | 2 | # Makefile for Linux kernel RxRPC |
3 | # | 3 | # |
4 | 4 | ||
5 | af-rxrpc-objs := \ | 5 | af-rxrpc-y := \ |
6 | af_rxrpc.o \ | 6 | af_rxrpc.o \ |
7 | ar-accept.o \ | 7 | ar-accept.o \ |
8 | ar-ack.o \ | 8 | ar-ack.o \ |
@@ -21,7 +21,7 @@ af-rxrpc-objs := \ | |||
21 | ar-transport.o | 21 | ar-transport.o |
22 | 22 | ||
23 | ifeq ($(CONFIG_PROC_FS),y) | 23 | ifeq ($(CONFIG_PROC_FS),y) |
24 | af-rxrpc-objs += ar-proc.o | 24 | af-rxrpc-y += ar-proc.o |
25 | endif | 25 | endif |
26 | 26 | ||
27 | obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o | 27 | obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o |