dev-lisp/asdf: Installs asdf.info only when >=dev-lisp/sbcl-1.4.0

Gentoo-Bug: 605752

Package-Manager: Portage-2.3.8, Repoman-2.3.1
This commit is contained in:
Chema Alonso Josa
2017-10-01 23:20:17 +02:00
parent e42ce56221
commit e83a7b220e

View File

@@ -34,7 +34,10 @@ find-lisp-impl() {
}
install_docs() {
(cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf ; doinfo "${PN}.info" )
(cd doc ; dodoc *.{html,css,ico,png} "${PN}.pdf" ; dodoc -r asdf )
if has_version ">=dev-lisp/sbcl-1.4.0" ; then
(cd doc ; doinfo "${PN}.info" )
fi
}
src_compile() {