notmuch: enable verbose make output

This commit is contained in:
Adam Vandenberg 2013-04-19 11:21:29 -07:00
parent dad76b9499
commit cd50a2e2dd

View file

@ -39,6 +39,11 @@ class Notmuch < Formula
args << "--without-emacs"
end
system "./configure", *args
system "make install"
if ARGV.verbose?
system "make install V=1"
else
system "make install"
end
end
end