linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Calling make directly is not permitted
@ 2012-02-06 15:38 Rick Farina
  2012-02-06 15:52 ` Richard Farina
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Rick Farina @ 2012-02-06 15:38 UTC (permalink / raw)
  To: mcgrof; +Cc: linux-wireless, Rick Farina

make was being called directly, fix to $(MAKE)

Signed-of-By: Rick Farina <sidhayn@gmail.com>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index d586f45..440bd91 100644
--- a/Makefile
+++ b/Makefile
@@ -115,7 +115,7 @@ btuninstall:
 	@echo
 
 btclean:
-	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) BT=TRUE clean
+	$(MAKE) -C /lib/modules/$(shell uname -r)/build M=$(PWD) BT=TRUE clean
 	@rm -f $(CREL_PRE)*
 
 install: uninstall install-modules install-scripts
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-07 21:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-06 15:38 [PATCH] Calling make directly is not permitted Rick Farina
2012-02-06 15:52 ` Richard Farina
2012-02-06 16:03 ` Larry Finger
2012-02-07 21:55 ` Luis R. Rodriguez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).