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 1RsfIP-0000c7-SY for garchives@archives.gentoo.org; Wed, 01 Feb 2012 18:52:46 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D2A1E0729; Wed, 1 Feb 2012 18:52:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 28718E0729 for ; Wed, 1 Feb 2012 18:52:34 +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 A40591B400D for ; Wed, 1 Feb 2012 18:52:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id C410D80042 for ; Wed, 1 Feb 2012 18:52:32 +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: <9e4b06838cef9a10468a6e3d220cc4f2154939e1.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/misc-functions.sh X-VCS-Directories: bin/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 9e4b06838cef9a10468a6e3d220cc4f2154939e1 Date: Wed, 1 Feb 2012 18:52:32 +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: 8a09d244-e91d-4eb2-a2c5-86e004fa57ab X-Archives-Hash: 773199e44bd358e51b864b8e1b531f0b commit: 9e4b06838cef9a10468a6e3d220cc4f2154939e1 Author: Zac Medico gentoo org> AuthorDate: Wed Feb 1 18:52:11 2012 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Feb 1 18:52:11 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D9e4b0683 install_qa_check: handle info dir rm failure This will fix bug #400679. --- bin/misc-functions.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 2c002cc..2614151 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -778,7 +778,7 @@ install_qa_check() { fi =20 # Portage regenerates this on the installed system. - rm -f "${ED}"/usr/share/info/dir{,.gz,.bz2} + rm -f "${ED}"/usr/share/info/dir{,.gz,.bz2} || die "rm failed!" =20 if has multilib-strict ${FEATURES} && \ [[ -x /usr/bin/file && -x /usr/bin/find ]] && \