Don’t display boring configure arguments

This commit is contained in:
Max Howell 2011-07-07 18:06:21 +01:00
parent cd4337f917
commit 3cda43a681

View File

@ -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