!interpreters/python: Align naming of configuration options

Aligns `CONFIG_INTERPRETER_*` options to `CONFIG_INTERPRETERS_*` options
to be consistent with other interpreters.

BREAKING CHANGE: All configurations using `CONFIG_INTERPRETER_PYTHON_*`
options will no longer compile due to missing symbol errors. The fix is
very quick: any configurations using this options should add a trailing
S following INTERPRETER in the affected Kconfig variables. I believe
`./tools/refresh.sh` should also be capable of doing this automatically.

Signed-off-by: Matteo Golin <matteo.golin@gmail.com>
This commit is contained in:
Matteo Golin 2026-02-15 16:25:09 -05:00 committed by simbit18
parent a604c46b00
commit 3ce356378d
3 changed files with 13 additions and 13 deletions

View file

@ -20,9 +20,9 @@
#
############################################################################
ifneq ($(CONFIG_INTERPRETER_CPYTHON),)
ifneq ($(CONFIG_INTERPRETERS_CPYTHON),)
CPYTHON_VERSION = $(patsubst "%",%,$(strip $(CONFIG_INTERPRETER_CPYTHON_VERSION)))
CPYTHON_VERSION = $(patsubst "%",%,$(strip $(CONFIG_INTERPRETERS_CPYTHON_VERSION)))
CPYTHON_VERSION_MINOR=$(basename $(CPYTHON_VERSION))
EXTRA_LIBPATHS += -L$(APPDIR)/interpreters/python/install/target