diff options
| author | chdiza | 2013-06-24 14:05:46 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-24 12:22:02 -0700 |
| commit | 85e966a07b2fabebee2cb9d6fe1b7ac2c87046cd (patch) | |
| tree | 8a1721defd36c8f9142bf608565ae22861f29f40 /Library/Formula/msmtp.rb | |
| parent | fcaafdc6a6fbd6cf67a03ac6aa7948da605b8335 (diff) | |
| download | homebrew-85e966a07b2fabebee2cb9d6fe1b7ac2c87046cd.tar.bz2 | |
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 <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/msmtp.rb')
| -rw-r--r-- | Library/Formula/msmtp.rb | 7 |
1 files changed, 3 insertions, 4 deletions
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 |
