From 1c279a2c0b0c245255559a709dc4197102a087a8 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 6 Sep 2014 11:25:29 -0600 Subject: [PATCH] Fix program name configuration variable used in the Makefile --- examples/nsh/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/nsh/Makefile b/examples/nsh/Makefile index f16a40549..40b8c8561 100644 --- a/examples/nsh/Makefile +++ b/examples/nsh/Makefile @@ -58,8 +58,8 @@ else endif endif -CONFIG_NSH_PROGNAME ?= nsh$(EXEEXT) -PROGNAME = $(CONFIG_NSH_PROGNAME) +CONFIG_EXAMPLES_NSH_PROGNAME ?= nsh$(EXEEXT) +PROGNAME = $(CONFIG_EXAMPLES_NSH_PROGNAME) ROOTDEPPATH = --dep-path .