Skip to content

Commit

Permalink
Net: rxrpc: Makefile: Remove deprecated kbuild goal definitions
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Tdent48227 authored and davem330 committed Nov 22, 2010
1 parent 094f2fa commit 9ed05ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/rxrpc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Makefile for Linux kernel RxRPC
#

af-rxrpc-objs := \
af-rxrpc-y := \
af_rxrpc.o \
ar-accept.o \
ar-ack.o \
Expand All @@ -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
Expand Down

0 comments on commit 9ed05ad

Please sign in to comment.