diff options
author | 2007-04-24 20:06:20 +0000 | |
---|---|---|
committer | 2007-04-24 20:06:20 +0000 | |
commit | 483cfb47823f7ea3845608ba26872b366e799939 (patch) | |
tree | 5181f69c4634f71919b9daeb59267edf1e7f3758 /eclass | |
parent | Removed version 1.0. (diff) | |
download | gentoo-2-483cfb47823f7ea3845608ba26872b366e799939.tar.gz gentoo-2-483cfb47823f7ea3845608ba26872b366e799939.tar.bz2 gentoo-2-483cfb47823f7ea3845608ba26872b366e799939.zip |
Fix bug #175820.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php5_0-sapi.eclass | 4 | ||||
-rw-r--r-- | eclass/php5_1-sapi.eclass | 4 | ||||
-rw-r--r-- | eclass/php5_2-sapi.eclass | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/eclass/php5_0-sapi.eclass b/eclass/php5_0-sapi.eclass index f7499af7b4c2..383a6091c642 100644 --- a/eclass/php5_0-sapi.eclass +++ b/eclass/php5_0-sapi.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/php5_0-sapi.eclass,v 1.33 2007/03/26 20:19:22 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php5_0-sapi.eclass,v 1.34 2007/04/24 20:06:20 chtekk Exp $ # ======================================================================== # @@ -463,7 +463,7 @@ php5_0-sapi_src_compile() { # MySQL support if use mysql ; then - phpconfutils_extension_with "mysql" "mysql" 1 "/usr/lib/mysql" + phpconfutils_extension_with "mysql" "mysql" 1 "/usr" phpconfutils_extension_with "mysql-sock" "mysql" 0 "/var/run/mysqld/mysqld.sock" fi diff --git a/eclass/php5_1-sapi.eclass b/eclass/php5_1-sapi.eclass index 039b7f74a2e4..402f010a3a02 100644 --- a/eclass/php5_1-sapi.eclass +++ b/eclass/php5_1-sapi.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/php5_1-sapi.eclass,v 1.40 2007/03/26 20:19:22 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php5_1-sapi.eclass,v 1.41 2007/04/24 20:06:20 chtekk Exp $ # ======================================================================== # @@ -507,7 +507,7 @@ php5_1-sapi_src_compile() { # MySQL support if use mysql ; then - phpconfutils_extension_with "mysql" "mysql" 1 "/usr/lib/mysql" + phpconfutils_extension_with "mysql" "mysql" 1 "/usr" phpconfutils_extension_with "mysql-sock" "mysql" 0 "/var/run/mysqld/mysqld.sock" fi diff --git a/eclass/php5_2-sapi.eclass b/eclass/php5_2-sapi.eclass index 311772c45bde..8cf53e11ed6e 100644 --- a/eclass/php5_2-sapi.eclass +++ b/eclass/php5_2-sapi.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/php5_2-sapi.eclass,v 1.3 2007/03/26 20:19:22 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php5_2-sapi.eclass,v 1.4 2007/04/24 20:06:20 chtekk Exp $ # ======================================================================== # @@ -510,7 +510,7 @@ php5_2-sapi_src_compile() { # MySQL support if use mysql ; then - phpconfutils_extension_with "mysql" "mysql" 1 "/usr/lib/mysql" + phpconfutils_extension_with "mysql" "mysql" 1 "/usr" phpconfutils_extension_with "mysql-sock" "mysql" 0 "/var/run/mysqld/mysqld.sock" fi |