Skip to content

Commit

Permalink
Fix build issue with freebsd
Browse files Browse the repository at this point in the history
  • Loading branch information
saleyn committed Mar 23, 2024
1 parent 7b58687 commit dbb7d7a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@
warn_export_all
]}.

{pre_hooks, [{compile, "make -C c_src"}]}.
{post_hooks, [{clean, "make -C c_src clean"}]}.
{pre_hooks, [
{"freebsd", compile, "gmake -C c_src"},
{ compile, "make -C c_src"}
]}.
{post_hooks, [
{"freebsd", clean, "gmake -C c_src clean"},
{ clean, "make -C c_src clean"}
]}.

{plugins, [rebar3_hex, rebar3_ex_doc]}.

Expand Down

0 comments on commit dbb7d7a

Please sign in to comment.