aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorMickael Remond <mremond@process-one.net>2015-09-07 17:55:54 +0200
committerMickael Remond <mremond@process-one.net>2015-09-07 17:55:54 +0200
commit73932fb5074448935f646c24534eea1881352fd2 (patch)
tree2af765cc16c8e60d99fb4731bc5f4951bf8bb79b /mix.exs
parentUse our own includes + includes from all dependencies (diff)
Fix typo
Diffstat (limited to '')
-rw-r--r--mix.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index b71d3cc08..09a6cc625 100644
--- a/mix.exs
+++ b/mix.exs
@@ -22,7 +22,7 @@ defmodule Ejabberd.Mixfile do
defp erlc_options do
# Use our own includes + includes from all dependencies
- includes = ["include"] + Path.wildcard(Path.join("..", "/*/include"))
+ includes = ["include"] ++ Path.wildcard(Path.join("..", "/*/include"))
[:debug_info] ++ Enum.map(includes, fn(path) -> {:i, path} end)
end