Gentoo Archives: gentoo-dev

From: Patrice Clement <monsieurp@g.o>
To: gentoo-dev@l.g.o
Cc: vim@g.o
Subject: [gentoo-dev] [PATCH 1/3] vim-plugin.eclass: dohtml is now obsolete.
Date: Sat, 04 Nov 2017 21:49:39
Message-Id: 20171104214844.22218-2-monsieurp@gentoo.org
In Reply to: [gentoo-dev] [PATCH 0/3] vim-plugin.eclass: improvements. by Patrice Clement
1 ---
2 eclass/vim-plugin.eclass | 6 +-----
3 1 file changed, 1 insertion(+), 5 deletions(-)
4
5 diff --git a/eclass/vim-plugin.eclass b/eclass/vim-plugin.eclass
6 index abe9c7b3661..a05cdb4520b 100644
7 --- a/eclass/vim-plugin.eclass
8 +++ b/eclass/vim-plugin.eclass
9 @@ -71,11 +71,7 @@ vim-plugin_src_install() {
10 local f
11 for f in *; do
12 [[ -f "${f}" ]] || continue
13 - if [[ "${f}" = *.html ]]; then
14 - dohtml "${f}"
15 - else
16 - dodoc "${f}"
17 - fi
18 + dodoc "${f}"
19 rm "${f}" || die
20 done
21
22 --
23 2.13.6

Replies