Skip to content

Commit

Permalink
[#591] Remove unnecessary deps from dac binaries
Browse files Browse the repository at this point in the history
Problem: dac binaries have libffi dependency that they do not use

Solution: Remove libffi dependency from dac files
  • Loading branch information
PruStephan committed Sep 5, 2023
1 parent 80a410f commit 68c9c71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Formula/tezos-dac-client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class << self
depends_on dependency => :build
end

dependencies = %w[gmp hidapi libev libffi tezos-sapling-params]
dependencies = %w[gmp hidapi libev tezos-sapling-params]
dependencies.each do |dependency|
depends_on dependency
end
Expand Down
2 changes: 1 addition & 1 deletion Formula/tezos-dac-node.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class << self
depends_on dependency => :build
end

dependencies = %w[gmp hidapi libev libffi tezos-sapling-params]
dependencies = %w[gmp hidapi libev tezos-sapling-params]
dependencies.each do |dependency|
depends_on dependency
end
Expand Down

0 comments on commit 68c9c71

Please sign in to comment.