summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoonas Niilola <juippis@gentoo.org>2021-06-23 11:25:22 +0300
committerJoonas Niilola <juippis@gentoo.org>2021-06-23 11:27:37 +0300
commite68ffa34eb4846cfcaec58874cd374cd83842681 (patch)
tree7e14fb62c530f6321d899e9db1b627dcb7c9629b /sys-apps/exa
parentsys-apps/exa: bump to v0.10.1 (diff)
downloadgentoo-e68ffa34eb4846cfcaec58874cd374cd83842681.tar.gz
gentoo-e68ffa34eb4846cfcaec58874cd374cd83842681.tar.bz2
gentoo-e68ffa34eb4846cfcaec58874cd374cd83842681.zip
sys-apps/exa: fix manpage collision with cargo.eclass
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'sys-apps/exa')
-rw-r--r--sys-apps/exa/exa-0.10.1.ebuild7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys-apps/exa/exa-0.10.1.ebuild b/sys-apps/exa/exa-0.10.1.ebuild
index 15de8d96b8e1..efc939365086 100644
--- a/sys-apps/exa/exa-0.10.1.ebuild
+++ b/sys-apps/exa/exa-0.10.1.ebuild
@@ -98,8 +98,10 @@ src_prepare() {
-o contrib/man/exa_colors.1 || die "failed to create colored man pages"
pandoc --standalone -f markdown -t man man/exa.1.md -o \
contrib/man/exa.1 || die "failed to create man pages"
- rm -r man || die "failed to remove man directory from source"
fi
+
+ # "source" files only, but cargo.eclass will attempt to install them.
+ rm -r man || die "failed to remove man directory from source"
}
src_compile() {
@@ -123,8 +125,7 @@ src_install() {
insinto /usr/share/fish/vendor_completions.d
newins completions/completions.fish exa.fish
- if use man
- then
+ if use man; then
doman contrib/man/*
fi
}