Skip to content

Commit

Permalink
Add missing dependency on syntax_tools
Browse files Browse the repository at this point in the history
The `recon:source/1` function calls `erl_prettypr` from `syntax_tools` application. This dependency was missing from the `.app` - this resulting in incomplete builds in some cases
  • Loading branch information
michalmuskala authored and Michał Muskała committed Aug 31, 2024
1 parent 11e6caa commit 7acccde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/recon.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{vsn, "2.5.5"},
{modules, [recon, recon_alloc, recon_lib, recon_trace, recon_rec]},
{registered, []},
{applications, [kernel, stdlib]},
{applications, [kernel, stdlib, syntax_tools]},

{licenses, ["BSD"]},
{links, [{"Github", "https://github.com/ferd/recon/"},
Expand Down

0 comments on commit 7acccde

Please sign in to comment.