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 B4A041382C5 for ; Mon, 18 Jan 2021 13:38:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEB43E0825; Mon, 18 Jan 2021 13:38:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 DA98AE0825 for ; Mon, 18 Jan 2021 13:38: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 59253340E84 for ; Mon, 18 Jan 2021 13:38:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A37974A2 for ; Mon, 18 Jan 2021 13:38:40 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1610977089.2d7173e1fe4436d1a399fd66ed5c7465e501080d.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/boinc/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-misc/boinc/boinc-7.16.14.ebuild X-VCS-Directories: sci-misc/boinc/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 2d7173e1fe4436d1a399fd66ed5c7465e501080d X-VCS-Branch: master Date: Mon, 18 Jan 2021 13:38: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: eea1c7e3-13c1-4341-8375-4c2abab3b79e X-Archives-Hash: 199c6f9e6e526c5cfecaadcd77dde697 commit: 2d7173e1fe4436d1a399fd66ed5c7465e501080d Author: Joonas Niilola gentoo org> AuthorDate: Mon Jan 18 13:38:09 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Mon Jan 18 13:38:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d7173e1 sci-misc/boinc: use rm -r in 7.16.14 Signed-off-by: Joonas Niilola gentoo.org> sci-misc/boinc/boinc-7.16.14.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sci-misc/boinc/boinc-7.16.14.ebuild b/sci-misc/boinc/boinc-7.16.14.ebuild index 409c97fc025..904a8535641 100644 --- a/sci-misc/boinc/boinc-7.16.14.ebuild +++ b/sci-misc/boinc/boinc-7.16.14.ebuild @@ -148,7 +148,7 @@ src_install() { fi # cleanup cruft - rm -rf "${ED}"/etc || die "rm failed" + rm -r "${ED}"/etc || die "rm failed" find "${D}" -name '*.la' -delete || die "Removing .la files failed" sed -e "s/@libdir@/$(get_libdir)/" "${FILESDIR}"/${PN}.init.in > ${PN}.init || die