diff options
author | Matthias Maier <tamiko@gentoo.org> | 2018-12-28 11:04:43 -0600 |
---|---|---|
committer | Matthias Maier <tamiko@gentoo.org> | 2018-12-28 11:05:59 -0600 |
commit | 357dd2b743a5bca72f18357a947457a59ed48a48 (patch) | |
tree | feb226690f068133b909e91f33650cbd05e8fa47 | |
parent | sys-fs/udev: backport patches (diff) | |
download | gentoo-357dd2b743a5bca72f18357a947457a59ed48a48.tar.gz gentoo-357dd2b743a5bca72f18357a947457a59ed48a48.tar.bz2 gentoo-357dd2b743a5bca72f18357a947457a59ed48a48.zip |
app-emulation/qemu: do no use dohtml
Closes: https://bugs.gentoo.org/673876
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Matthias Maier <tamiko@gentoo.org>
-rw-r--r-- | app-emulation/qemu/qemu-3.1.0.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app-emulation/qemu/qemu-3.1.0.ebuild b/app-emulation/qemu/qemu-3.1.0.ebuild index 9534354a753c..c31ddc232268 100644 --- a/app-emulation/qemu/qemu-3.1.0.ebuild +++ b/app-emulation/qemu/qemu-3.1.0.ebuild @@ -676,7 +676,10 @@ src_install() { emake DESTDIR="${ED}" install # This might not exist if the test failed. #512010 - [[ -e check-report.html ]] && dohtml check-report.html + if [[ -e check-report.html ]]; then + docinto html + dodoc check-report.html + fi if use kernel_linux; then udev_newrules "${FILESDIR}"/65-kvm.rules-r1 65-kvm.rules |