Skip to content

Commit

Permalink
Revert change to linking order arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
dizzyd committed Dec 18, 2009
1 parent f02c48a commit 2f1d415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rebar_port_compiler.erl
Expand Up @@ -95,7 +95,7 @@ compile(Config, AppFile) ->
case needs_link(SoName, NewBins) of
true ->
AllBins = string:join(NewBins ++ ExistingBins, " "),
rebar_utils:sh_failfast(?FMT("$CC $LDFLAGS $DRIVER_LDFLAGS ~s -o ~s", [AllBins, SoName]), Env);
rebar_utils:sh_failfast(?FMT("$CC ~s $LDFLAGS $DRIVER_LDFLAGS -o ~s", [AllBins, SoName]), Env);
false ->
?INFO("Skipping relink of ~s\n", [SoName]),
ok
Expand Down

0 comments on commit 2f1d415

Please sign in to comment.