aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-12-09 12:23:52 -0500
committerJack Nagel2014-12-09 12:23:52 -0500
commitea3eea82a74bb8636e1d01924fc3369c54770bee (patch)
tree34b9e7567ea314e7f601f14fea24213335851391 /Library/Formula
parent91fc6f44b802f48fa6203336deb93e7ceb91556e (diff)
downloadhomebrew-ea3eea82a74bb8636e1d01924fc3369c54770bee.tar.bz2
unbound: specify path to openssl
Fixes #34827.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/unbound.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/unbound.rb b/Library/Formula/unbound.rb
index e6946c167..4a88c255f 100644
--- a/Library/Formula/unbound.rb
+++ b/Library/Formula/unbound.rb
@@ -15,8 +15,10 @@ class Unbound < Formula
end
def install
- system "./configure", "--prefix=#{prefix}", "--with-libevent=#{Formula["libevent"].opt_prefix}",
- "--sysconfdir=#{etc}"
+ system "./configure", "--prefix=#{prefix}",
+ "--sysconfdir=#{etc}",
+ "--with-libevent=#{Formula["libevent"].opt_prefix}",
+ "--with-ssl=#{Formula["openssl"].opt_prefix}"
system "make", "install"
end