[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200910180352.12632-1-willy@infradead.org>
Date: Thu, 10 Sep 2020 19:03:52 +0100
From: "Matthew Wilcox (Oracle)" <willy@...radead.org>
To: Masahiro Yamada <masahiroy@...nel.org>,
Michal Marek <michal.lkml@...kovi.net>
Cc: "Matthew Wilcox (Oracle)" <willy@...radead.org>,
linux-kbuild@...r.kernel.org, linux-kernel@...r.kernel.org,
Mauro Carvalho Chehab <mchehab@...nel.org>,
linux-doc@...r.kernel.org
Subject: [PATCH] build: Fix documentation checking
Using $(call cmd,...) requires that there be a quiet_ version of the
command, otherwise it's silently skipped.
Fixes: 3a2429e1faf4 ("kbuild: change if_changed_rule for multi-line recipe")
Signed-off-by: Matthew Wilcox (Oracle) <willy@...radead.org>
---
scripts/Makefile.build | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/scripts/Makefile.build b/scripts/Makefile.build
index a467b9323442..571d75777b6f 100644
--- a/scripts/Makefile.build
+++ b/scripts/Makefile.build
@@ -104,7 +104,8 @@ else ifeq ($(KBUILD_CHECKSRC),2)
endif
ifneq ($(KBUILD_EXTRA_WARN),)
- cmd_checkdoc = $(srctree)/scripts/kernel-doc -none $<
+ quiet_cmd_checkdoc = CHKDOC $<
+ cmd_checkdoc = $(srctree)/scripts/kernel-doc -none $<
endif
# Compile C sources (.c)
--
2.28.0
Powered by blists - more mailing lists