diff options
Diffstat (limited to 'src/rcl_state.erl')
-rw-r--r-- | src/rcl_state.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcl_state.erl b/src/rcl_state.erl index 2d27de2..23c7e74 100644 --- a/src/rcl_state.erl +++ b/src/rcl_state.erl @@ -89,7 +89,7 @@ new(PropList, Targets) when erlang:is_list(PropList) -> State0 = #state_t{log = proplists:get_value(log, PropList, rcl_log:new(error)), - output_dir=proplists:get_value(output_dir, PropList, ""), + output_dir=filename:absname(proplists:get_value(output_dir, PropList, "")), lib_dirs=get_lib_dirs(proplists:get_value(lib_dirs, PropList, [])), config_files=Targets, goals=proplists:get_value(goals, PropList, []), |