Browse Source

Fix a typo in build-plt

The dependencies weren't included as expected.
Loïc Hoguin 12 years ago
parent
commit
dc122adbaa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      erlang.mk

+ 1 - 1
erlang.mk

@@ -123,7 +123,7 @@ DIALYZER_OPTS ?= -Werror_handling -Wrace_conditions \
 
 
 build-plt: deps app
 build-plt: deps app
 	@dialyzer --build_plt --output_plt .$(PROJECT).plt \
 	@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:
 dialyze:
 	@dialyzer --src src --plt .$(PROJECT).plt --no_native $(DIALYZER_OPTS)
 	@dialyzer --src src --plt .$(PROJECT).plt --no_native $(DIALYZER_OPTS)