diff options
author | 2006-05-05 21:42:16 +0000 | |
---|---|---|
committer | 2006-05-05 21:42:16 +0000 | |
commit | d4f5d54044bcd27c6b8ccffb7e76db0e3652ce70 (patch) | |
tree | bdf0055d0290be3a1136219fc71a71063802e14d /eclass | |
parent | Fix bug #132379. (diff) | |
download | historical-d4f5d54044bcd27c6b8ccffb7e76db0e3652ce70.tar.gz historical-d4f5d54044bcd27c6b8ccffb7e76db0e3652ce70.tar.bz2 historical-d4f5d54044bcd27c6b8ccffb7e76db0e3652ce70.zip |
Fix punctuation.
Diffstat (limited to '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 |