From 85e966a07b2fabebee2cb9d6fe1b7ac2c87046cd Mon Sep 17 00:00:00 2001 From: chdiza Date: Mon, 24 Jun 2013 14:05:46 -0400 Subject: msmtp: Delete unnecessary option code Msmtp will enable support for the OS X Keychain by default on Macs. No need to ask for it. Closes #20753. Signed-off-by: Adam Vandenberg --- Library/Formula/msmtp.rb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Library') diff --git a/Library/Formula/msmtp.rb b/Library/Formula/msmtp.rb index 6f968f0e6..198306a92 100644 --- a/Library/Formula/msmtp.rb +++ b/Library/Formula/msmtp.rb @@ -5,18 +5,17 @@ class Msmtp < Formula url 'http://downloads.sourceforge.net/project/msmtp/msmtp/1.4.31/msmtp-1.4.31.tar.bz2' sha1 'c0edce1e1951968853f15209c8509699ff9e9ab5' - option 'with-macosx-keyring', "Support Mac OS X Keyring" - depends_on 'pkg-config' => :build + # msmtp enables OS X Keychain support by default, so no need to ask for it. + def install args = %W[ --disable-dependency-tracking --prefix=#{prefix} ] - args << "--with-macosx-keyring" if build.include? 'with-macosx-keyring' system "./configure", *args - system "make install" + system "make", "install" end end -- cgit v1.2.3