From ed2dcf0517c16da89807f6a71435808a8ba77ae8 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Tue, 25 Oct 2011 21:24:19 -0500 Subject: [PATCH] notmuch: disable emacs via configure Signed-off-by: Jack Nagel --- Formula/notmuch.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/notmuch.rb b/Formula/notmuch.rb index 83cc6afcf3e..5a49feeb72b 100644 --- a/Formula/notmuch.rb +++ b/Formula/notmuch.rb @@ -10,7 +10,7 @@ class Notmuch < Formula depends_on 'gmime' def install - system "./configure", "--prefix=#{prefix}" + system "./configure", "--prefix=#{prefix}", "--without-emacs" # notmuch requires a newer emacs than macosx provides. So we either # disable the emacs bindings or make notmuch depend on the homebrew @@ -18,7 +18,7 @@ class Notmuch < Formula # And there is a race condition in the makefile, so we have to either # deparallelize the process or run make and make install separately. - system "make HAVE_EMACS=0" - system "make install HAVE_EMACS=0" + system "make" + system "make install" end end