mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
It is possible to force a specific version of python to be used when building the kernel by passing PYTHON3= on the make command line. However kernel-doc.py is currently called with python3 hard-coded and thus ignores this setting. Use $(PYTHON3) to run $(KERNELDOC) so that the desired version of python is used. Signed-off-by: Jean Delvare <jdelvare@suse.de> Reviewed-by: Nicolas Schier <nsc@kernel.org> Reviewed-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Link: https://patch.msgid.link/20251107192933.2bfe9e57@endymion Signed-off-by: Nathan Chancellor <nathan@kernel.org>
19 lines
662 B
Makefile
19 lines
662 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Ensure drm headers are self-contained and pass kernel-doc
|
|
hdrtest-files := \
|
|
$(shell cd $(src) && find * -name '*.h' 2>/dev/null)
|
|
|
|
always-$(CONFIG_DRM_HEADER_TEST) += \
|
|
$(patsubst %.h,%.hdrtest, $(hdrtest-files))
|
|
|
|
# Include the header twice to detect missing include guard.
|
|
quiet_cmd_hdrtest = HDRTEST $(patsubst %.hdrtest,%.h,$@)
|
|
cmd_hdrtest = \
|
|
$(CC) $(c_flags) -fsyntax-only -x c /dev/null -include $< -include $<; \
|
|
PYTHONDONTWRITEBYTECODE=1 $(PYTHON3) $(KERNELDOC) -none $(if $(CONFIG_WERROR)$(CONFIG_DRM_WERROR),-Werror) $<; \
|
|
touch $@
|
|
|
|
$(obj)/%.hdrtest: $(src)/%.h FORCE
|
|
$(call if_changed_dep,hdrtest)
|