mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Make sure that the so_specs stuff is properly backwards compatible
This commit is contained in:
parent
1826e62069
commit
ff1cf0365b
1 changed files with 23 additions and 14 deletions
|
@ -344,18 +344,27 @@ source_to_bin(Source) ->
|
||||||
filename:rootname(Source, Ext) ++ ".o".
|
filename:rootname(Source, Ext) ++ ".o".
|
||||||
|
|
||||||
so_specs(Config, AppFile, Bins) ->
|
so_specs(Config, AppFile, Bins) ->
|
||||||
%% Check config to see if a custom so_name has been specified
|
|
||||||
?INFO("config ~p\n", [Config]),
|
|
||||||
case rebar_config:get(Config, so_specs, undefined) of
|
case rebar_config:get(Config, so_specs, undefined) of
|
||||||
undefined ->
|
undefined ->
|
||||||
%% Get the app name, which we'll use to
|
%% New form of so_specs is not provided. See if the old form of {so_name} is available
|
||||||
%% generate the linked port driver name
|
%% instead
|
||||||
|
SoName = case rebar_config:get(Config, so_name, undefined) of
|
||||||
|
undefined ->
|
||||||
|
%% Ok, neither old nor new form is available. Use the app name and
|
||||||
|
%% generate a sensible default.
|
||||||
case rebar_app_utils:load_app_file(AppFile) of
|
case rebar_app_utils:load_app_file(AppFile) of
|
||||||
{ok, AppName, _} ->
|
{ok, AppName, _} ->
|
||||||
SoName = ?FMT("priv/~s", [lists:concat([AppName, "_drv.so"])]),
|
?FMT("priv/~s", [lists:concat([AppName, "_drv.so"])]);
|
||||||
[{SoName, Bins}];
|
|
||||||
error ->
|
error ->
|
||||||
?FAIL
|
?FAIL
|
||||||
end;
|
end;
|
||||||
SoSpecs -> SoSpecs
|
|
||||||
|
AName ->
|
||||||
|
%% Old form is available -- use it
|
||||||
|
?FMT("priv/~s", [AName])
|
||||||
|
end,
|
||||||
|
[{SoName, Bins}];
|
||||||
|
|
||||||
|
SoSpecs ->
|
||||||
|
SoSpecs
|
||||||
end.
|
end.
|
||||||
|
|
Loading…
Reference in a new issue