diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-08-27 11:17:32 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-08-27 11:17:32 +0000 |
commit | bc6a1acebf6fc018212101a092db2599a2dc7c86 (patch) | |
tree | bdf152c0de8b921b72337da4328a63fe218dbe5b /eclass/php-common-r1.eclass | |
parent | Die properly on errors (diff) | |
download | historical-bc6a1acebf6fc018212101a092db2599a2dc7c86.tar.gz historical-bc6a1acebf6fc018212101a092db2599a2dc7c86.tar.bz2 historical-bc6a1acebf6fc018212101a092db2599a2dc7c86.zip |
pay attention to empty my.cnf
Diffstat (limited to 'eclass/php-common-r1.eclass')
-rw-r--r-- | eclass/php-common-r1.eclass | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/eclass/php-common-r1.eclass b/eclass/php-common-r1.eclass index a323163db934..2349bc1ad972 100644 --- a/eclass/php-common-r1.eclass +++ b/eclass/php-common-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-common-r1.eclass,v 1.9 2007/03/05 01:50:47 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-common-r1.eclass,v 1.10 2007/08/27 11:17:32 jokey Exp $ # ======================================================================== # @@ -228,6 +228,11 @@ php_check_pgsql() { # ======================================================================== php_get_mycnf_charset() { + # nothing todo if no mysql installed + if [[ ! -f "${ROOT}/etc/mysql/my.cnf" ]]; then + echo "empty" + return + fi local sapi="${1}" local section="" local client_charset="" |