From 3cda43a681041cf8b0b593d25b131a603c15ef61 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Thu, 7 Jul 2011 18:06:21 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20display=20boring=20configure=20?= =?UTF-8?q?arguments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Library/Homebrew/formula.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 046a93bfa7..0d1380d794 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