0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-14 12:20:24 +00:00

Update erlang.mk again

This commit is contained in:
Loïc Hoguin 2013-12-02 15:52:29 +01:00
parent 893e612b61
commit 72ef4ef2f7

8
erlang.mk vendored
View file

@ -90,7 +90,13 @@ ALL_TEST_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(TEST_DEPS))
# Application. # Application.
ERL_LIBS ?= $(DEPS_DIR) ifeq ($(filter $(DEPS_DIR),$(subst :, ,$(ERL_LIBS))),)
ifeq ($(ERL_LIBS),)
ERL_LIBS = $(DEPS_DIR)
else
ERL_LIBS := $(ERL_LIBS):$(DEPS_DIR)
endif
endif
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 \