From patchwork Mon Oct 11 22:54:33 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sven Eckelmann X-Patchwork-Id: 495 Return-Path: Received: from mail.gmx.net (mailout-de.gmx.net [213.165.64.23]) by open-mesh.org (Postfix) with SMTP id 6601B15458A for ; Tue, 12 Oct 2010 00:54:51 +0200 (CEST) Received: (qmail invoked by alias); 11 Oct 2010 22:54:48 -0000 Received: from unknown (EHLO localhost) [89.246.215.5] by mail.gmx.net (mp009) with SMTP; 12 Oct 2010 00:54:48 +0200 X-Authenticated: #15668376 X-Provags-ID: V01U2FsdGVkX1/IFkBG9yLI3lAAFZ3sdJsrDQxBf8PcUlK1u1UytX 4O3+n3IL9ihm1f From: Sven Eckelmann To: b.a.t.m.a.n@lists.open-mesh.org Date: Tue, 12 Oct 2010 00:54:33 +0200 Message-Id: <1286837673-17108-1-git-send-email-sven.eckelmann@gmx.de> X-Mailer: git-send-email 1.7.1 X-Y-GMX-Trusted: 0 Subject: [B.A.T.M.A.N.] [PATCH] batman-adv: replace the use of -objs with -y X-BeenThere: b.a.t.m.a.n@lists.open-mesh.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: The list for a Better Approach To Mobile Ad-hoc Networking List-Id: The list for a Better Approach To Mobile Ad-hoc Networking List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Oct 2010 22:54:51 -0000 From: Tracey Dent Changed -objs to -y n Makefile. Signed-off-by: Tracey Dent Signed-off-by: Greg Kroah-Hartman Signed-off-by: Sven Eckelmann --- batman-adv/Makefile.kbuild | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/batman-adv/Makefile.kbuild b/batman-adv/Makefile.kbuild index ca81cb1..14e3daa 100644 --- a/batman-adv/Makefile.kbuild +++ b/batman-adv/Makefile.kbuild @@ -32,4 +32,4 @@ EXTRA_CFLAGS += -DREVISION_VERSION=\"$(REVISION)\" endif obj-m += batman-adv.o -batman-adv-objs := main.o bat_debugfs.o bat_sysfs.o send.o routing.o soft-interface.o icmp_socket.o translation-table.o bitarray.o hash.o ring_buffer.o vis.o hard-interface.o aggregation.o originator.o gateway_common.o gateway_client.o unicast.o $(shell [ "2" -eq "$(VERSION)" ] 2>&- && [ "6" -eq "$(PATCHLEVEL)" ] 2>&- && [ "$(SUBLEVEL)" -le "28" ] 2>&- && echo bat_printk.o) +batman-adv-y := main.o bat_debugfs.o bat_sysfs.o send.o routing.o soft-interface.o icmp_socket.o translation-table.o bitarray.o hash.o ring_buffer.o vis.o hard-interface.o aggregation.o originator.o gateway_common.o gateway_client.o unicast.o $(shell [ "2" -eq "$(VERSION)" ] 2>&- && [ "6" -eq "$(PATCHLEVEL)" ] 2>&- && [ "$(SUBLEVEL)" -le "28" ] 2>&- && echo bat_printk.o)