Skip to content

Commit

Permalink
ruby-fakegem.eclass: use dodoc to install documentation files
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
graaff committed Jul 16, 2017
1 parent 8a50338 commit 73f5c11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eclass/ruby-fakegem.eclass
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 73f5c11

Please sign in to comment.