Skip to content

Commit

Permalink
Fix spacing and Quickcheck inclusion.
Browse files Browse the repository at this point in the history
  • Loading branch information
rustyio committed Jun 25, 2010
1 parent a0d5482 commit 00fc0ab
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/sync.erl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ go(Options) ->
%% If Quickcheck is around, then define the EQC flag, that way you
%% can have an "-ifdef(EQC)" statement.
case code:ensure_loaded(eqc) of
{module, eqc} -> Options1 = [{d, 'EQC'}, Options];
{module, eqc} -> Options1 = [{d, 'EQC'}|Options];
_ -> Options1 = Options
end,

Expand Down Expand Up @@ -90,9 +90,6 @@ inner_run_make_all(BaseDir, [Dir|Dirs], Options) ->
case filelib:is_file("./Emakefile") of
true ->
io:format(":: MAKE - ~s~n", [Dir]),



case make:all(Options) of
up_to_date ->
inner_run_make_all(BaseDir, Dirs, Options);
Expand Down

0 comments on commit 00fc0ab

Please sign in to comment.