mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-31 14:13:09 +00:00
!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:
parent
a604c46b00
commit
3ce356378d
3 changed files with 13 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue