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]> --- net/wanrouter/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/net/wanrouter/Makefile b/net/wanrouter/Makefile index 9f188ab..4da14bc 100644 --- a/net/wanrouter/Makefile +++ b/net/wanrouter/Makefile @@ -4,4 +4,4 @@ obj-$(CONFIG_WAN_ROUTER) += wanrouter.o -wanrouter-objs := wanproc.o wanmain.o +wanrouter-y := wanproc.o wanmain.o -- 1.7.3.2.245.g03276 -- To unsubscribe from this list: send the line "unsubscribe ceph-devel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
