LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] kbuild: "make tools/help" does not need syncconfig
@ 2018-04-28 22:36 Randy Dunlap
0 siblings, 0 replies; only message in thread
From: Randy Dunlap @ 2018-04-28 22:36 UTC (permalink / raw)
To: linux-kbuild; +Cc: LKML, Masahiro Yamada
From: Randy Dunlap <rdunlap@infradead.org>
Fix "make tools/help" to skip "make syncconfig".
"make tools/help" currently tries to run "make syncconfig" even
though there is no .config file and one is not needed just to get
help text output. With no .config file, make says:
*** Configuration file ".config" not found!
*** Please run some configurator (e.g. "make oldconfig" or
*** "make menuconfig" or "make xconfig").
scripts/kconfig/Makefile:40: recipe for target 'syncconfig' failed
make[2]: *** [syncconfig] Error 1
Makefile:525: recipe for target 'syncconfig' failed
and then goes on to run:
make LDFLAGS= MAKEFLAGS=" " O=/linux/linux-next-20180426 subdir=tools -C ./tools/ help
which produces the requested help text. However, the "syncconfig"
efforts are not needed, so skip them by making "tools/help" be part
of the no-dot-config-targets rule.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
---
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- linux-next-20180426.orig/Makefile
+++ linux-next-20180426/Makefile
@@ -224,7 +224,7 @@ clean-targets := %clean mrproper cleando
no-dot-config-targets := $(clean-targets) \
cscope gtags TAGS tags help% %docs check% coccicheck \
$(version_h) headers_% archheaders archscripts \
- kernelversion %src-pkg
+ kernelversion %src-pkg tools/help
config-targets := 0
mixed-targets := 0
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2018-04-28 22:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-28 22:36 [PATCH] kbuild: "make tools/help" does not need syncconfig Randy Dunlap
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).