diff options
author | Tracey Dent <tdent48227@gmail.com> | 2010-11-21 18:03:24 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-22 19:16:14 +0300 |
commit | 927a41f50c83b539fde5c01911f4968d717199bf (patch) | |
tree | af7e42463a9ff45f636beff900bb9b12e809fe82 /net/phonet | |
parent | 64387df8da1e4f178a47d53930288a46a357a479 (diff) | |
download | linux-927a41f50c83b539fde5c01911f4968d717199bf.tar.xz |
Net: phonet: 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/phonet')
-rw-r--r-- | net/phonet/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/phonet/Makefile b/net/phonet/Makefile index d62bbba649b3..e10b1b182ce3 100644 --- a/net/phonet/Makefile +++ b/net/phonet/Makefile @@ -1,6 +1,6 @@ obj-$(CONFIG_PHONET) += phonet.o pn_pep.o -phonet-objs := \ +phonet-y := \ pn_dev.o \ pn_netlink.o \ socket.o \ @@ -8,4 +8,4 @@ phonet-objs := \ sysctl.o \ af_phonet.o -pn_pep-objs := pep.o pep-gprs.o +pn_pep-y := pep.o pep-gprs.o |