From: Matt Turner Date: Sat, 23 Nov 2019 18:21:20 +0000 (-0500) Subject: media-libs/cogl: Restore -f in rm -rvf X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=26cca8c1e7ac922579646c13fa8ad6f5c0081403;p=gentoo.git 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 --- diff --git a/media-libs/cogl/cogl-1.22.4.ebuild b/media-libs/cogl/cogl-1.22.4.ebuild index 12bd445b80ff..3265c8399ccc 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 }