summaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-23 15:51:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-10-23 15:51:45 +0000
commitf8b6aa507b5e305c371a210fd85739519fbc3831 (patch)
tree0888916956b120bd3c7abd6c16b366344c7fbe52 /apps/Makefile
parent5477e67307542a7b8ca42f62f5d02f7c01e49c14 (diff)
downloadpx4-nuttx-f8b6aa507b5e305c371a210fd85739519fbc3831.tar.gz
px4-nuttx-f8b6aa507b5e305c371a210fd85739519fbc3831.tar.bz2
px4-nuttx-f8b6aa507b5e305c371a210fd85739519fbc3831.zip
Fewer shell invocations in apps/Makefile
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5248 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/Makefile b/apps/Makefile
index e407e2de8..be98dbbfe 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -114,8 +114,9 @@ $(foreach BUILTIN, $(CONFIGURED_APPS), $(eval $(call ADD_BUILTIN,$(BUILTIN))))
# provided by the user (possibly as a symbolic link) to add libraries and
# applications to the standard build from the repository.
-INSTALLED_APPS += ${shell if [ -r external/Makefile ]; then echo "external"; fi}
-SUBDIRS += ${shell if [ -r external/Makefile ]; then echo "external"; fi}
+EXTERNAL_DIR := $(dir $(wildcard external/Makefile))
+INSTALLED_APPS += $(EXTERNAL_DIR)
+SUBDIRS += $(EXTERNAL_DIR)
# The final build target