From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1RpvVd-0008Gi-1R for garchives@archives.gentoo.org; Wed, 25 Jan 2012 05:35:01 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7642FE0790; Wed, 25 Jan 2012 05:34:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 159BAE0790 for ; Wed, 25 Jan 2012 05:34:52 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 478641B402A for ; Wed, 25 Jan 2012 05:34:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 8E54580044 for ; Wed, 25 Jan 2012 05:34:49 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/phase-helpers.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: be009d82d552740843d703fcde33112dcd698a9e Date: Wed, 25 Jan 2012 05:34:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: a20a605f-37fb-42f9-bf91-31719bb7a045 X-Archives-Hash: 095b65cf8a541cd398ee7396bf62f089 commit: be009d82d552740843d703fcde33112dcd698a9e Author: Zac Medico gentoo org> AuthorDate: Wed Jan 25 05:34:27 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jan 25 05:34:27 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3Dbe009d82 phase-helpers.sh: set -x when emulating yes This avoids displaying a bunch of garbage in debug mode. --- bin/phase-helpers.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh index 517a910..946520b 100644 --- a/bin/phase-helpers.sh +++ b/bin/phase-helpers.sh @@ -302,7 +302,7 @@ unpack() { ZIP|zip|jar) # unzip will interactively prompt under some error conditions, # as reported in bug #336285 - ( while true ; do echo n || break ; done ) | \ + ( set +x ; while true ; do echo n || break ; done ) | \ unzip -qo "${srcdir}${x}" || die "$myfail" ;; gz|Z|z)