Browse Source

Fix ct include option prefix

pull/3/head
Shunichi Shinohara 14 years ago
committed by Tuncer Ayaz
parent
commit
cd3653616b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_ct.erl

+ 1
- 1
src/rebar_ct.erl View File

@ -127,7 +127,7 @@ make_cmd(TestDir, Config) ->
IncludeDir = filename:join(Cwd, "include"),
case filelib:is_dir(IncludeDir) of
true ->
Include = " -I \"" ++ IncludeDir ++ "\"";
Include = " -include \"" ++ IncludeDir ++ "\"";
false ->
Include = ""
end,

Loading…
Cancel
Save