summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAnders Svensson <anders@erlang.org>2020-02-10 14:08:15 +0100
committerAnders Svensson <anders@erlang.org>2020-02-12 11:24:13 +0100
commit7160472ff7b8b787aecc6191e8c45b91c5c9f327 (patch)
tree6239644a7ae6920c8e4ccc50f5e07ad045687f01 /lib
parent4d7003848ba3e2e3bb022773dca10216e3128838 (diff)
downloaderlang-7160472ff7b8b787aecc6191e8c45b91c5c9f327.tar.gz
Add missing module in dialyze target
Which resulted in the following warning. Unknown functions: diameter_dict_parser:parse/1
Diffstat (limited to 'lib')
-rw-r--r--lib/diameter/src/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/diameter/src/Makefile b/lib/diameter/src/Makefile
index b421184b2d..d6854cfd27 100644
--- a/lib/diameter/src/Makefile
+++ b/lib/diameter/src/Makefile
@@ -228,7 +228,10 @@ dialyze: opt $(PLT)
-Wno_improper_lists \
$(EBIN)/diameter_gen_base_rfc3588.$(EMULATOR) \
$(patsubst %, $(EBIN)/%.$(EMULATOR), \
- $(notdir $(RT_MODULES) $(CT_MODULES) $(INFO_MODULES)))
+ $(notdir $(DICT_YRL) \
+ $(RT_MODULES) \
+ $(CT_MODULES) \
+ $(INFO_MODULES)))
# Omit all but the common dictionary module since these
# (diameter_gen_relay in particular) generate warnings depending on how
# much of the included diameter_gen.hrl they use.