aboutsummaryrefslogtreecommitdiffstats
path: root/erlang.mk
diff options
context:
space:
mode:
authorDaniel White <[email protected]>2013-08-24 22:45:46 +1000
committerDaniel White <[email protected]>2013-08-24 22:51:39 +1000
commit807b1d9fc4a8d53b2120c350fd27fce394bb66cb (patch)
treeae106ab8e695620e3b4640f8e50cebf804fcb981 /erlang.mk
parentcbc68b8e5d50f5bdf8bf1031e68627994819457d (diff)
downloaderlang.mk-807b1d9fc4a8d53b2120c350fd27fce394bb66cb.tar.gz
erlang.mk-807b1d9fc4a8d53b2120c350fd27fce394bb66cb.tar.bz2
erlang.mk-807b1d9fc4a8d53b2120c350fd27fce394bb66cb.zip
Set ERL_LIBS to $(DEPS_DIR) rather than $(DEPS)
This fixes a problem introduced by commit 1b6aa025 such that the dependencies were no longer being included in compilation. Noticed due to modules in a project being unable to find behaviours defined in dependencies.
Diffstat (limited to 'erlang.mk')
-rw-r--r--erlang.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/erlang.mk b/erlang.mk
index d4a85fb..617abdc 100644
--- a/erlang.mk
+++ b/erlang.mk
@@ -62,7 +62,7 @@ ALL_TEST_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(TEST_DEPS))
# Application.
-ERL_LIBS ?= $(DEPS)
+ERL_LIBS ?= $(DEPS_DIR)
export ERL_LIBS
ERLC_OPTS ?= -Werror +debug_info +warn_export_all +warn_export_vars \