From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E642613997D for ; Tue, 12 Nov 2019 09:02:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3ACFAE09A7; Tue, 12 Nov 2019 09:02:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 23A9DE09A7 for ; Tue, 12 Nov 2019 09:02:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D49F934CBD4 for ; Tue, 12 Nov 2019 09:02:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FCF68A6 for ; Tue, 12 Nov 2019 09:02:40 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1573549346.96404d74babf2ac8494111d21648ac8ceb6ce9d2.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/automake/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/automake/automake-1.16.1-r2.ebuild sys-devel/automake/automake-9999.ebuild X-VCS-Directories: sys-devel/automake/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 96404d74babf2ac8494111d21648ac8ceb6ce9d2 X-VCS-Branch: master Date: Tue, 12 Nov 2019 09:02:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a0063aab-581c-4ff4-9d7e-8605099a7656 X-Archives-Hash: d94540c697a6b9ff67d71f56184470bf commit: 96404d74babf2ac8494111d21648ac8ceb6ce9d2 Author: Lars Wendler gentoo org> AuthorDate: Tue Nov 12 09:02:26 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Tue Nov 12 09:02:26 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96404d74 sys-devel/automake: Don't fail if rm fails Closes: https://bugs.gentoo.org/699932 Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Lars Wendler gentoo.org> sys-devel/automake/automake-1.16.1-r2.ebuild | 2 +- sys-devel/automake/automake-9999.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-devel/automake/automake-1.16.1-r2.ebuild b/sys-devel/automake/automake-1.16.1-r2.ebuild index 70e1fed3e37..75cccbd31b4 100644 --- a/sys-devel/automake/automake-1.16.1-r2.ebuild +++ b/sys-devel/automake/automake-1.16.1-r2.ebuild @@ -72,7 +72,7 @@ src_prepare() { # to depend on texinfo to regen things. #464146 (among others) slot_info_pages() { pushd "${ED}"/usr/share/info >/dev/null || die - rm dir || die + rm -f dir # Rewrite all the references to other pages. # before: * aclocal-invocation: (automake)aclocal Invocation. Generating aclocal.m4. diff --git a/sys-devel/automake/automake-9999.ebuild b/sys-devel/automake/automake-9999.ebuild index 9490f85d527..aaaefaabe03 100644 --- a/sys-devel/automake/automake-9999.ebuild +++ b/sys-devel/automake/automake-9999.ebuild @@ -68,7 +68,7 @@ src_prepare() { # to depend on texinfo to regen things. #464146 (among others) slot_info_pages() { pushd "${ED}"/usr/share/info >/dev/null || die - rm dir || die + rm -f dir # Rewrite all the references to other pages. # before: * aclocal-invocation: (automake)aclocal Invocation. Generating aclocal.m4.