Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: Makefile: disable check rules on make cleandocs

It doesn't make sense to check for missing ABI and documents
when cleaning the tree.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Reviewed-by: Breno Leitao <leitao@debian.org>
Reviewed-by: Donald Hunter <donald.hunter@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/8386afcee494c9e81d051c83235150104e3a2949.1750571906.git.mchehab+huawei@kernel.org

authored by

Mauro Carvalho Chehab and committed by
Jonathan Corbet
30c83405 097fe727

+2
+2
Documentation/Makefile
··· 5 5 # for cleaning 6 6 subdir- := devicetree/bindings 7 7 8 + ifneq ($(MAKECMDGOALS),cleandocs) 8 9 # Check for broken documentation file references 9 10 ifeq ($(CONFIG_WARN_MISSING_DOCUMENTS),y) 10 11 $(shell $(srctree)/scripts/documentation-file-ref-check --warn) ··· 14 13 # Check for broken ABI files 15 14 ifeq ($(CONFIG_WARN_ABI_ERRORS),y) 16 15 $(shell $(srctree)/scripts/get_abi.py --dir $(srctree)/Documentation/ABI validate) 16 + endif 17 17 endif 18 18 19 19 # You can set these variables from the command line.