diff options
| author | Adam Vandenberg | 2013-04-19 11:21:29 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-04-19 11:21:29 -0700 |
| commit | a8a2cd9f49fd7444b101c032e489cc99d8f5ab64 (patch) | |
| tree | c9f46ab334bda4c12e728ab4b25c4ad1139260fe | |
| parent | d2e023fe9d88080d050f2072940cc9f558404ce7 (diff) | |
| download | homebrew-a8a2cd9f49fd7444b101c032e489cc99d8f5ab64.tar.bz2 | |
notmuch: enable verbose make output
| -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 |
