From eb0b5b194fd55714f139695e337a75291cc9bb82 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 17 Oct 2019 17:51:49 -0600 Subject: [PATCH] apps/examples/nxterm/Makefile: PROGNAME, PRIORITY, STACKSIZE varialble names did not match declarations in Kconfig file. --- examples/nxterm/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/nxterm/Makefile b/examples/nxterm/Makefile index 230750a9e..6b675bc62 100644 --- a/examples/nxterm/Makefile +++ b/examples/nxterm/Makefile @@ -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