summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2013-08-05 18:43:40 +0200
committerLorenz Meier <lm@inf.ethz.ch>2013-08-05 18:43:40 +0200
commitf38ce474cbc3f43a526c1a6dc23a5c9cf9105d91 (patch)
treedc0a38f91ff2847b8d6bbc97a74e1f18f4b3f9d2
parenta7f2fdc08e2bbfa65bcf043eed274159fd31d040 (diff)
downloadnuttx-f38ce474cbc3f43a526c1a6dc23a5c9cf9105d91.tar.gz
nuttx-f38ce474cbc3f43a526c1a6dc23a5c9cf9105d91.tar.bz2
nuttx-f38ce474cbc3f43a526c1a6dc23a5c9cf9105d91.zip
Fixed missing symbol in Makefile
-rw-r--r--apps/examples/posix_spawn/filesystem/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/examples/posix_spawn/filesystem/Makefile b/apps/examples/posix_spawn/filesystem/Makefile
index 7e25ce241..a000d7b05 100644
--- a/apps/examples/posix_spawn/filesystem/Makefile
+++ b/apps/examples/posix_spawn/filesystem/Makefile
@@ -33,8 +33,10 @@
#
############################################################################
+-include $(TOPDIR)/.config
-include $(TOPDIR)/Make.defs
-include $(APPDIR)$(DELIM)Make.defs
+
+DELIM ?= "/"
SPAWN_DIR = $(APPDIR)$(DELIM)examples$(DELIM)posix_spawn
FILESYSTEM_DIR = $(SPAWN_DIR)$(DELIM)filesystem