apps/examples/nxterm/Makefile: PROGNAME, PRIORITY, STACKSIZE varialble names did not match declarations in Kconfig file.

This commit is contained in:
Gregory Nutt 2019-10-17 17:51:49 -06:00
parent 5d59abe442
commit eb0b5b194f

@ -42,9 +42,9 @@ MAINSRC = nxterm_main.c
# NX built-in application info
PROGNAME = $(CONFIG_NXTERM_PROGNAME)
PRIORITY = $(CONFIG_NXTERM_PRIORITY)
STACKSIZE = $(CONFIG_NXTERM_STACKSIZE)
PROGNAME = $(CONFIG_EXAMPLES_NXTERM_PROGNAME)
PRIORITY = $(CONFIG_EXAMPLES_NXTERM_PRIORITY)
STACKSIZE = $(CONFIG_EXAMPLES_NXTERM_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_NXTERM)
include $(APPDIR)/Application.mk