Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2017-03-28 17:08:10 +0300
committerChristophe Romain <christophe.romain@process-one.net>2017-03-28 17:08:10 +0300
commit0f864d946669f9782abf0ac1c775d99840f5273e (patch)
treed462cbc5904b55bd66fe0e45ad562c3ba3cb43ca /mix.exs
parent117f31125d4d1e39f6bf639360ff37a44664dbb2 (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