Browse Source

Fix for issue 447.

Create ebin dir for all apps_dir apps before building any of them.
Daniel Goertzen 9 years ago
parent
commit
e6868d13bb
1 changed files with 3 additions and 0 deletions
  1. 3 0
      core/deps.mk

+ 3 - 0
core/deps.mk

@@ -53,6 +53,9 @@ deps::
 else
 deps:: $(ALL_DEPS_DIRS)
 ifndef IS_APP
+	for dep in $(ALL_APPS_DIRS) ; do \
+		mkdir -p $$dep/ebin; \
+	done
 	$(verbose) for dep in $(ALL_APPS_DIRS) ; do \
 		$(MAKE) -C $$dep IS_APP=1 || exit $$?; \
 	done