All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1 linux-next] kbuild: add make force=1 for testing
@ 2016-07-24 13:28 Fabian Frederick
  2016-07-26  0:05 ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Fabian Frederick @ 2016-07-24 13:28 UTC (permalink / raw)
  To: Robert Jarzmik, Michal Marek; +Cc: Andrew Morton, linux-kernel, fabf

Commit 51193b76bfff
("kbuild: forbid kernel directory to contain spaces and colons")

makes it impossible to build kernel on default SD labels like
"SD Card" for instance.

Makefile:133: *** main directory cannot contain spaces nor colons.  Stop.

User could rename directories but volume name is not always writable.

This patch adds ability to do make force=1 for people
not interested in modules_install in this case but only testing.

(Note that other options could go under ifndef force)

Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index caa33e0..89d00a5 100644
--- a/Makefile
+++ b/Makefile
@@ -128,8 +128,10 @@ _all:
 # Cancel implicit rules on top Makefile
 $(CURDIR)/Makefile Makefile: ;
 
-ifneq ($(words $(subst :, ,$(CURDIR))), 1)
+ifndef force
+ ifneq ($(words $(subst :, ,$(CURDIR))), 1)
   $(error main directory cannot contain spaces nor colons)
+ endif
 endif
 
 ifneq ($(KBUILD_OUTPUT),)
@@ -1408,6 +1410,7 @@ help:
 	@echo  '		2: warnings which occur quite often but may still be relevant'
 	@echo  '		3: more obscure warnings, can most likely be ignored'
 	@echo  '		Multiple levels can be combined with W=12 or W=123'
+	@echo  '  make force=1 [options] Avoid feasibility checks. Use at your own risk'
 	@echo  ''
 	@echo  'Execute "make" or "make all" to build all targets marked with [*] '
 	@echo  'For further info see the ./README file'
-- 
2.8.1

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

end of thread, other threads:[~2016-07-27 14:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-24 13:28 [PATCH 1/1 linux-next] kbuild: add make force=1 for testing Fabian Frederick
2016-07-26  0:05 ` Andrew Morton
2016-07-26  6:45   ` Robert Jarzmik
2016-07-26 21:47   ` Michal Marek
2016-07-27 14:37     ` Fabian Frederick

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.