From 73932fb5074448935f646c24534eea1881352fd2 Mon Sep 17 00:00:00 2001 From: Mickael Remond Date: Mon, 7 Sep 2015 17:55:54 +0200 Subject: [PATCH] Fix typo --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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