diff options
| author | Max Howell | 2011-07-07 18:06:21 +0100 |
|---|---|---|
| committer | Max Howell | 2011-07-29 11:58:41 +0100 |
| commit | 3cda43a681041cf8b0b593d25b131a603c15ef61 (patch) | |
| tree | 928efa34989fabba2cc7b5a4c9dc033eec75ec2d /Library | |
| parent | cd4337f91711ca4db134f784c625351603ebc288 (diff) | |
| download | brew-3cda43a681041cf8b0b593d25b131a603c15ef61.tar.bz2 | |
Don’t display boring configure arguments
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 4 |
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 |
