diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2007-04-25 18:22:37 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2007-04-25 18:22:37 +0000 |
commit | 87ae4d3144ae7be50ccb8d140f1eefaf9b84e5fe (patch) | |
tree | 02861197c7cf02a31873e00b69e7f9130b499c18 /eclass/php-ext-source-r1.eclass | |
parent | ia64 stable wrt bug 175985 (diff) | |
download | gentoo-2-87ae4d3144ae7be50ccb8d140f1eefaf9b84e5fe.tar.gz gentoo-2-87ae4d3144ae7be50ccb8d140f1eefaf9b84e5fe.tar.bz2 gentoo-2-87ae4d3144ae7be50ccb8d140f1eefaf9b84e5fe.zip |
Use MY_DATADIR instead of DATADIR, as DATADIR breaks when the environment already contains it, per bug #174755.
Diffstat (limited to 'eclass/php-ext-source-r1.eclass')
-rw-r--r-- | eclass/php-ext-source-r1.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/php-ext-source-r1.eclass b/eclass/php-ext-source-r1.eclass index d9cbd0189948..3fb748eb8a55 100644 --- a/eclass/php-ext-source-r1.eclass +++ b/eclass/php-ext-source-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-ext-source-r1.eclass,v 1.7 2007/03/22 20:12:56 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r1.eclass,v 1.8 2007/04/25 18:22:37 robbat2 Exp $ # # Author: Tal Peer <coredumb@gentoo.org> # Author: Stuart Herbert <stuart@gentoo.org> @@ -38,7 +38,9 @@ php-ext-source-r1_src_compile() { my_conf="--prefix=${PHPPREFIX} --with-php-config=${PHPCONFIG} ${my_conf}" # Create configure out of config.m4 - ${PHPIZE} + if [ "${PHP_EXT_SKIP_PHPIZE}" != 'yes' ]; then + ${PHPIZE} + fi # Concurrent PHP Apache2 modules support if has_concurrentmodphp ; then |