From 43a7f69db984acac4b89f7b352f9bcda1a855f9d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 28 Feb 2012 16:20:47 -0500 Subject: [PATCH] update_chroot: run perl-cleaner with --quiet There's no reason to always show the full build output when updating the perl modules, so use the --quiet flag. If there is a failure, emerge will dump the full log like normal. BUG=None TEST=`./update_chroot` showed much less output when updating perl modules Change-Id: I0265443bca0f42a79cc3e44a7f8e9bfeab69f568 Reviewed-on: https://gerrit.chromium.org/gerrit/17080 Reviewed-by: David James Commit-Ready: Mike Frysinger Tested-by: Mike Frysinger --- update_chroot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_chroot b/update_chroot index 2c548ce6e0..86353b45d1 100755 --- a/update_chroot +++ b/update_chroot @@ -96,5 +96,5 @@ printf '%s\nYES\n' -9 | sudo etc-update PERL_VERSIONS=$(find /usr/lib*/perl5/vendor_perl/ -maxdepth 1 -mindepth 1 \ -type d -printf '%P\n' | sort -u | wc -w) if [ "$PERL_VERSIONS" -gt 1 ] ; then - sudo /usr/sbin/perl-cleaner --all + sudo perl-cleaner --all -- --quiet fi