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: get rid of KERNELDOC_CONF env variable

Despite its name, what's there is a set of Sphinx arguments that
are passed to sphinx/kerneldoc.py:

- kerneldoc_srctree: location of the source tree;
- kerneldoc_bin: external script to excecute kernel-doc

Drop it, and just place the values at the already-existing
ALLSPHINXOPTS variable.

Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tested-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Message-ID: <88be0fc288598c30fbedb9cc230b2a7ed28225a2.1745453655.git.mchehab+huawei@kernel.org>

authored by

Mauro Carvalho Chehab and committed by
Jonathan Corbet
76a9b592 9d9bec3d

+2 -2
+2 -2
Documentation/Makefile
··· 61 61 PAPEROPT_a4 = -D latex_paper_size=a4 62 62 PAPEROPT_letter = -D latex_paper_size=letter 63 63 KERNELDOC = $(srctree)/scripts/kernel-doc.py 64 - KERNELDOC_CONF = -D kerneldoc_srctree=$(srctree) -D kerneldoc_bin=$(KERNELDOC) 65 - ALLSPHINXOPTS = $(KERNELDOC_CONF) $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) 64 + ALLSPHINXOPTS = -D kerneldoc_srctree=$(srctree) -D kerneldoc_bin=$(KERNELDOC) 65 + ALLSPHINXOPTS += $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) 66 66 ifneq ($(wildcard $(srctree)/.config),) 67 67 ifeq ($(CONFIG_RUST),y) 68 68 # Let Sphinx know we will include rustdoc