From 87ae4d3144ae7be50ccb8d140f1eefaf9b84e5fe Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Wed, 25 Apr 2007 18:22:37 +0000 Subject: Use MY_DATADIR instead of DATADIR, as DATADIR breaks when the environment already contains it, per bug #174755. --- eclass/php-ext-source-r1.eclass | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'eclass/php-ext-source-r1.eclass') 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 # Author: Stuart Herbert @@ -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 -- cgit v1.2.3-65-gdbad