aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2013-04-19 11:21:29 -0700
committerAdam Vandenberg2013-04-19 11:21:29 -0700
commita8a2cd9f49fd7444b101c032e489cc99d8f5ab64 (patch)
treec9f46ab334bda4c12e728ab4b25c4ad1139260fe
parentd2e023fe9d88080d050f2072940cc9f558404ce7 (diff)
downloadhomebrew-a8a2cd9f49fd7444b101c032e489cc99d8f5ab64.tar.bz2
notmuch: enable verbose make output
-rw-r--r--Library/Formula/notmuch.rb7
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