diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-10-22 22:54:19 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-10-22 22:54:19 +0000 |
commit | 0bc777a5155a7b19af6c101f82bee3745526d941 (patch) | |
tree | e3383552a712b0d94bb27e72ed591e48e3dbdfe7 /eclass | |
parent | Revision bump from php overlay (diff) | |
download | historical-0bc777a5155a7b19af6c101f82bee3745526d941.tar.gz historical-0bc777a5155a7b19af6c101f82bee3745526d941.tar.bz2 historical-0bc777a5155a7b19af6c101f82bee3745526d941.zip |
Fix doc call (from php overlay)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-ext-pecl-r1.eclass | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/eclass/php-ext-pecl-r1.eclass b/eclass/php-ext-pecl-r1.eclass index c636e8f5f9e0..f233138e5f9f 100644 --- a/eclass/php-ext-pecl-r1.eclass +++ b/eclass/php-ext-pecl-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-pecl-r1.eclass,v 1.9 2007/09/02 17:49:20 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-pecl-r1.eclass,v 1.10 2007/10/22 22:54:19 jokey Exp $ # # Author: Tal Peer <coredumb@gentoo.org> # Author: Luca Longinotti <chtekk@gentoo.org> @@ -79,10 +79,7 @@ php-ext-pecl-r1_src_install() { has_php php-ext-source-r1_src_install - # Those two are always present. - dodoc-php "${WORKDIR}/package.xml" CREDITS - - for doc in ${DOCS} ; do + for doc in ${DOCS} "${WORKDIR}"/package.xml CREDITS ; do [[ -s ${doc} ]] && dodoc-php ${doc} done |