diff options
author | Christian Hoffmann <hoffie@gentoo.org> | 2007-08-16 22:11:00 +0000 |
---|---|---|
committer | Christian Hoffmann <hoffie@gentoo.org> | 2007-08-16 22:11:00 +0000 |
commit | f534355020c3e67c92870c6f7fd6042a2677dffc (patch) | |
tree | 515e5014ca2f1bffd63d0c20ad122bf710937abd /eclass/depend.php.eclass | |
parent | version bump wrt bug 186167 (diff) | |
download | gentoo-2-f534355020c3e67c92870c6f7fd6042a2677dffc.tar.gz gentoo-2-f534355020c3e67c92870c6f7fd6042a2677dffc.tar.bz2 gentoo-2-f534355020c3e67c92870c6f7fd6042a2677dffc.zip |
import fix for bug 154665, thanks to Jakub Moc <jakub@gentoo.org>
Diffstat (limited to 'eclass/depend.php.eclass')
-rw-r--r-- | eclass/depend.php.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/depend.php.eclass b/eclass/depend.php.eclass index 4d7dd4562204..fdf921fa3aaf 100644 --- a/eclass/depend.php.eclass +++ b/eclass/depend.php.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/depend.php.eclass,v 1.19 2007/05/12 14:22:12 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/depend.php.eclass,v 1.20 2007/08/16 22:11:00 hoffie Exp $ # ======================================================================== # @@ -400,7 +400,7 @@ require_php_cli() { fi if [[ -z ${PHP_VERSION} ]] ; then - die "No PHP CLI installed" + die "No PHP CLI installed. Re-emerge dev-lang/php with USE=cli." fi # If we get here, then PHP_VERSION tells us which version of PHP we @@ -443,7 +443,7 @@ require_php_cgi() { fi if [[ -z ${PHP_VERSION} ]] ; then - die "No PHP CGI installed" + die "No PHP CGI installed. Re-emerge dev-lang/php with USE=cgi." fi # If we get here, then PHP_VERSION tells us which version of PHP we |