diff options
author | Hans de Graaff <graaff@gentoo.org> | 2017-07-16 10:30:21 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2017-07-16 10:30:21 +0200 |
commit | 73f5c11d2d76cf6016b4e7dced8fe36560672fc1 (patch) | |
tree | e75ef4dd3a0f4bb04e5ce399f83e1e107aebfb14 /eclass | |
parent | dev-ruby/faraday_middleware: avoid git dependency, bug 621496 (diff) | |
download | gentoo-73f5c11d2d76cf6016b4e7dced8fe36560672fc1.tar.gz gentoo-73f5c11d2d76cf6016b4e7dced8fe36560672fc1.tar.bz2 gentoo-73f5c11d2d76cf6016b4e7dced8fe36560672fc1.zip |
ruby-fakegem.eclass: use dodoc to install documentation files
dohtml is deprecated in EAPI 6, but more importantly it does not
actually do what we want, which is to install all the documentation
files, including fonts, javascript, and css to make the documentation
pages look as intended.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ruby-fakegem.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/ruby-fakegem.eclass b/eclass/ruby-fakegem.eclass index 3c10e577a411..2bdba3630ad2 100644 --- a/eclass/ruby-fakegem.eclass +++ b/eclass/ruby-fakegem.eclass @@ -505,7 +505,7 @@ all_fakegem_install() { [[ -d ${dir} ]] || continue pushd ${dir} &>/dev/null || die - dohtml -r * || die "failed to install documentation" + dodoc -r * || die "failed to install documentation" popd &>/dev/null || die done fi |