aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2011-07-07 18:06:21 +0100
committerMax Howell2011-07-29 11:58:41 +0100
commit3cda43a681041cf8b0b593d25b131a603c15ef61 (patch)
tree928efa34989fabba2cc7b5a4c9dc033eec75ec2d /Library
parentcd4337f91711ca4db134f784c625351603ebc288 (diff)
downloadbrew-3cda43a681041cf8b0b593d25b131a603c15ef61.tar.bz2
Don’t display boring configure arguments
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 046a93bfa..0d1380d79 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -465,7 +465,9 @@ protected
# Pretty titles the command and buffers stdout/stderr
# Throws if there's an error
def system cmd, *args
- ohai "#{cmd} #{args*' '}".strip
+ pretty_args = args
+ args.delete "--disable-dependency-tracking" if cmd == "./configure"
+ ohai "#{cmd} #{pretty_args*' '}".strip
if ARGV.verbose?
safe_system cmd, *args