diff options
author | 2011-11-20 08:19:23 +0000 | |
---|---|---|
committer | 2011-11-20 08:19:23 +0000 | |
commit | 3098b7bf584e87665388b1350e16cb62dfaba3f7 (patch) | |
tree | 30a2bf151e69715cc60c347c77a7efe1cb5b5752 /eclass | |
parent | Block maildrop #374909 by Diego Elio Pettenò. (diff) | |
download | gentoo-2-3098b7bf584e87665388b1350e16cb62dfaba3f7.tar.gz gentoo-2-3098b7bf584e87665388b1350e16cb62dfaba3f7.tar.bz2 gentoo-2-3098b7bf584e87665388b1350e16cb62dfaba3f7.zip |
see if the doc target exists before we try to build it #348626 by Thomas Kahle
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/enlightenment.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index 0f82430e897a..c0f1c15cd8e6 100644 --- a/eclass/enlightenment.eclass +++ b/eclass/enlightenment.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.89 2011/07/08 11:35:01 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.90 2011/11/20 08:19:23 vapier Exp $ # @ECLASS: enlightenment.eclass # @MAINTAINER: @@ -162,7 +162,7 @@ enlightenment_src_compile() { if use doc ; then if [[ -x ./gendoc ]] ; then ./gendoc || die - else + elif emake -j1 -n doc >&/dev/null ; then emake doc || die fi fi |