commit: 96404d74babf2ac8494111d21648ac8ceb6ce9d2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Tue Nov 12 09:02:26 2019 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> 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 <polynomial-c <AT> 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.
