diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/notmuch.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Library/Formula/notmuch.rb b/Library/Formula/notmuch.rb index a667ff84a..671d9dd68 100644 --- a/Library/Formula/notmuch.rb +++ b/Library/Formula/notmuch.rb @@ -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 |
