Skip to content

Commit

Permalink
Merge pull request #16 from DavidAlphaFox/openbsd-fix
Browse files Browse the repository at this point in the history
Fix build on OpenBSD
  • Loading branch information
mworrell authored Aug 9, 2020
2 parents 09ef470 + 2a13dd5 commit 0ee9f80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@

{pre_hooks,
[{"(linux|darwin|solaris)", compile, "make -C c_src"},
{"(freebsd)", compile, "gmake -C c_src"}]}.
{"(freebsd|openbsd)", compile, "gmake -C c_src"}]}.

{post_hooks,
[{"(linux|darwin|solaris)", clean, "make -C c_src clean"},
{"(freebsd)", clean, "gmake -C c_src clean"}]}.
{"(freebsd|openbsd)", clean, "gmake -C c_src clean"}]}.
{deps, [
{poolboy, "1.5.2"}
]}.
]}.

0 comments on commit 0ee9f80

Please sign in to comment.