diff options
-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 |