aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2017-03-28 16:08:10 +0200
committerChristophe Romain <christophe.romain@process-one.net>2017-03-28 16:08:10 +0200
commit0f864d946669f9782abf0ac1c775d99840f5273e (patch)
treed462cbc5904b55bd66fe0e45ad562c3ba3cb43ca /mix.exs
parentAdd SQL as router RAM backend (diff)
Mix needs include path to p1_utils
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index f7c74a4e9..a13d6b782 100644
--- a/mix.exs
+++ b/mix.exs
@@ -34,7 +34,7 @@ defmodule Ejabberd.Mixfile do
defp erlc_options do
# Use our own includes + includes from all dependencies
- includes = ["include"] ++ deps_include(["fast_xml", "xmpp"])
+ includes = ["include"] ++ deps_include(["fast_xml", "xmpp", "p1_utils"])
[:debug_info, {:d, :ELIXIR_ENABLED}] ++ Enum.map(includes, fn(path) -> {:i, path} end)
end