summaryrefslogtreecommitdiffstats
path: root/nuttx/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2011-03-19 13:28:07 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2011-03-19 13:28:07 +0000
commit2ecb272fe18576ec9ceaffdfefb614b7b57b69e6 (patch)
tree69f944e9c0c24c32021aed5cbd1df41883811e05 /nuttx/Makefile
parentb2a21eb6ddac6180bb7af4d4b86fc62c077cfe0a (diff)
Use = instead of / for delimiter in appconfig files
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@3396 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/Makefile')
-rw-r--r--nuttx/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/Makefile b/nuttx/Makefile
index 1e180b1424..8e875cf64e 100644
--- a/nuttx/Makefile
+++ b/nuttx/Makefile
@@ -65,7 +65,7 @@ BOARD_DIR = configs/$(CONFIG_ARCH_BOARD)
# APPS_LOC can be over-ridden from the command line:
ifeq ($(CONFIG_BUILTIN_APPS),y)
-ifeq ($(APP_LOC),)
+ifeq ($(APPS_LOC),)
APPS_LOC = ../apps
endif
APPS_DIR := ${shell if [ -r $(APPS_LOC)/Makefile ]; then echo "$(APPS_LOC)"; fi}