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 6EEC7138334 for ; Sat, 23 Nov 2019 19:45:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B9B9E0784; Sat, 23 Nov 2019 19:45:14 +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 7E1F5E0784 for ; Sat, 23 Nov 2019 19:45:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F2E8F34D282 for ; Sat, 23 Nov 2019 19:45:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9A7FB5FF for ; Sat, 23 Nov 2019 19:45:10 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1574538240.26cca8c1e7ac922579646c13fa8ad6f5c0081403.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cogl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/cogl/cogl-1.22.4.ebuild X-VCS-Directories: media-libs/cogl/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 26cca8c1e7ac922579646c13fa8ad6f5c0081403 X-VCS-Branch: master Date: Sat, 23 Nov 2019 19:45:10 +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: 0cb73a38-559f-4777-bdf4-1592222bcfdc X-Archives-Hash: dc0491d9de1bbb2dd207d6f4d98946b3 commit: 26cca8c1e7ac922579646c13fa8ad6f5c0081403 Author: Matt Turner gentoo org> AuthorDate: Sat Nov 23 18:21:20 2019 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Nov 23 19:44:00 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26cca8c1 media-libs/cogl: Restore -f in rm -rvf Because of the next patch we need to run eautoreconf, which somehow causes this directory to not exist in the install. The -f was removed in fc115d74f4ef ("media-libs/cogl: add missing mesa[egl] dep for USE=kms"). The commit message states Remove rm -f option usage while here (it makes the `|| die` useless and makes us not notice once this call isn't necessary anymore). but cogl hasn't seen any real work in about three years, so I don't think that's particularly important or likely to happen. Bug: https://bugs.gentoo.org/692212 Signed-off-by: Matt Turner gentoo.org> media-libs/cogl/cogl-1.22.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/cogl/cogl-1.22.4.ebuild b/media-libs/cogl/cogl-1.22.4.ebuild index 12bd445b80f..3265c8399cc 100644 --- a/media-libs/cogl/cogl-1.22.4.ebuild +++ b/media-libs/cogl/cogl-1.22.4.ebuild @@ -114,5 +114,5 @@ src_install() { gnome2_src_install # Remove silly examples-data directory - rm -rv "${ED}/usr/share/cogl/examples-data/" || die + rm -rvf "${ED}/usr/share/cogl/examples-data/" || die }