fetchmail: explicitly specify openssl prefix

Closes Homebrew/homebrew#41064.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Chongyu Zhu 2015-06-25 15:33:09 +08:00 committed by Jack Nagel
parent 76e9c801cb
commit 94c64117a3

View file

@ -13,7 +13,7 @@ class Fetchmail < Formula
depends_on "openssl" depends_on "openssl"
def install def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-ssl" system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", "--with-ssl=#{Formula["openssl"].opt_prefix}"
system "make", "install" system "make", "install"
end end