aboutsummaryrefslogtreecommitdiffstats
path: root/erlang.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-05-01 12:06:20 +0200
committerLoïc Hoguin <[email protected]>2013-05-01 12:06:20 +0200
commitdc122adbaaedc7258704c628e3b2068368e0b59e (patch)
treef30eec89d6f60ae3db21c46b84c1d8559c80661b /erlang.mk
parentff7f47fe8ccee222d0a53db082431eda3eb94901 (diff)
downloaderlang.mk-dc122adbaaedc7258704c628e3b2068368e0b59e.tar.gz
erlang.mk-dc122adbaaedc7258704c628e3b2068368e0b59e.tar.bz2
erlang.mk-dc122adbaaedc7258704c628e3b2068368e0b59e.zip
Fix a typo in build-plt
The dependencies weren't included as expected.
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 cde607a..0ac0f3f 100644
--- a/erlang.mk
+++ b/erlang.mk
@@ -123,7 +123,7 @@ DIALYZER_OPTS ?= -Werror_handling -Wrace_conditions \
build-plt: deps app
@dialyzer --build_plt --output_plt .$(PROJECT).plt \
- --apps erts kernel stdlib $(PLT_APPS) $(ALL_DEPS_DIR)
+ --apps erts kernel stdlib $(PLT_APPS) $(ALL_DEPS_DIRS)
dialyze:
@dialyzer --src src --plt .$(PROJECT).plt --no_native $(DIALYZER_OPTS)