diff options
| author | Jack Nagel | 2014-12-09 12:23:52 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-09 12:23:52 -0500 |
| commit | ea3eea82a74bb8636e1d01924fc3369c54770bee (patch) | |
| tree | 34b9e7567ea314e7f601f14fea24213335851391 | |
| parent | 91fc6f44b802f48fa6203336deb93e7ceb91556e (diff) | |
| download | homebrew-ea3eea82a74bb8636e1d01924fc3369c54770bee.tar.bz2 | |
unbound: specify path to openssl
Fixes #34827.
| -rw-r--r-- | Library/Formula/unbound.rb | 6 |
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 |
