diff options
author | Matt Turner <mattst88@gentoo.org> | 2019-11-23 13:21:20 -0500 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2019-11-23 14:44:00 -0500 |
commit | 26cca8c1e7ac922579646c13fa8ad6f5c0081403 (patch) | |
tree | 2955b0d221899b3b984adab7840d3c2604485b45 /media-libs | |
parent | dev-python/fonttools: Depend on dev-python/backports-os for python2 (diff) | |
download | gentoo-26cca8c1e7ac922579646c13fa8ad6f5c0081403.tar.gz gentoo-26cca8c1e7ac922579646c13fa8ad6f5c0081403.tar.bz2 gentoo-26cca8c1e7ac922579646c13fa8ad6f5c0081403.zip |
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 <mattst88@gentoo.org>
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/cogl/cogl-1.22.4.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |