diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-11-20 08:19:23 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-11-20 08:19:23 +0000 |
commit | 2f471f327f48ab6a7c32eef023c0aeee7b4832a3 (patch) | |
tree | 5044551f7473f644f2f5a165df144dcd7f202267 /eclass | |
parent | Block maildrop #374909 by Diego Elio Pettenò. (diff) | |
download | historical-2f471f327f48ab6a7c32eef023c0aeee7b4832a3.tar.gz historical-2f471f327f48ab6a7c32eef023c0aeee7b4832a3.tar.bz2 historical-2f471f327f48ab6a7c32eef023c0aeee7b4832a3.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 |