summaryrefslogtreecommitdiff
path: root/nuttx/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-19 13:28:07 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-19 13:28:07 +0000
commitbc284a1fde0acaadb4c88bee73f9a4d85323196b (patch)
tree69f944e9c0c24c32021aed5cbd1df41883811e05 /nuttx/Makefile
parent85b0e03f7313fb9b2e59e510c31d8afb01912c4e (diff)
downloadpx4-nuttx-bc284a1fde0acaadb4c88bee73f9a4d85323196b.tar.gz
px4-nuttx-bc284a1fde0acaadb4c88bee73f9a4d85323196b.tar.bz2
px4-nuttx-bc284a1fde0acaadb4c88bee73f9a4d85323196b.zip
Use = instead of / for delimiter in appconfig files
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3396 42af7a65-404d-4744-a932-0658087f49c3
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 1e180b142..8e875cf64 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}