Browse Source

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.
Daniel White 11 years ago
parent
commit
807b1d9fc4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      erlang.mk

+ 1 - 1
erlang.mk

@@ -62,7 +62,7 @@ ALL_TEST_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(TEST_DEPS))
 
 
 # Application.
 # Application.
 
 
-ERL_LIBS ?= $(DEPS)
+ERL_LIBS ?= $(DEPS_DIR)
 export ERL_LIBS
 export ERL_LIBS
 
 
 ERLC_OPTS ?= -Werror +debug_info +warn_export_all +warn_export_vars \
 ERLC_OPTS ?= -Werror +debug_info +warn_export_all +warn_export_vars \