diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-05-05 21:42:16 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-05-05 21:42:16 +0000 |
commit | 795397ee680f1f107744760f21daa76042992668 (patch) | |
tree | c84e003129f00d9433dcfcfde370eff06dc3f261 /eclass/depend.php.eclass | |
parent | Fix bug #132379. (diff) | |
download | gentoo-2-795397ee680f1f107744760f21daa76042992668.tar.gz gentoo-2-795397ee680f1f107744760f21daa76042992668.tar.bz2 gentoo-2-795397ee680f1f107744760f21daa76042992668.zip |
Fix punctuation.
Diffstat (limited to 'eclass/depend.php.eclass')
-rw-r--r-- | eclass/depend.php.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/depend.php.eclass b/eclass/depend.php.eclass index 1995fc289d93..86502e851ccb 100644 --- a/eclass/depend.php.eclass +++ b/eclass/depend.php.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/depend.php.eclass,v 1.13 2006/04/20 12:15:35 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/depend.php.eclass,v 1.14 2006/05/05 21:42:16 chtekk Exp $ # # ======================================================================== # @@ -195,11 +195,11 @@ require_php_with_use() { local missing_use="" local x - einfo "Checking for required PHP feature(s):" + einfo "Checking for required PHP feature(s) ..." for x in $@ ; do if ! built_with_use =${PHP_PKG} ${x} && ! phpconfutils_built_with_use =${PHP_PKG} ${x} ; then - einfo " Discovered missing USE flag ${x}" + einfo " Discovered missing USE flag: ${x}" missing_use="${missing_use} ${x}" fi done @@ -231,7 +231,7 @@ require_php_with_any_use() { local missing_use="" local x - einfo "Checking for required PHP feature(s):" + einfo "Checking for required PHP feature(s) ..." for x in $@ ; do if built_with_use =${PHP_PKG} ${x} || phpconfutils_built_with_use =${PHP_PKG} ${x} ; then |