summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2007-07-11 09:53:26 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2007-07-11 09:53:26 +0000
commit011a8e3a0b8644bd027a25157fd4111d29c0a666 (patch)
tree5efc200233a43d2d221fd2adbe15f0c45b3acc6d /eclass/php-ext-source-r1.eclass
parentVersion bump for bug #184791. Includes patch for mysql_client_test per bug #1... (diff)
downloadgentoo-2-011a8e3a0b8644bd027a25157fd4111d29c0a666.tar.gz
gentoo-2-011a8e3a0b8644bd027a25157fd4111d29c0a666.tar.bz2
gentoo-2-011a8e3a0b8644bd027a25157fd4111d29c0a666.zip
Make it possible to skip phpize via the PHP_EXT_SKIP_PHPIZE env var.
Diffstat (limited to 'eclass/php-ext-source-r1.eclass')
-rw-r--r--eclass/php-ext-source-r1.eclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/php-ext-source-r1.eclass b/eclass/php-ext-source-r1.eclass
index 93ee79e9be3c..186d0824e048 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.9 2007/04/25 18:24:37 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r1.eclass,v 1.10 2007/07/11 09:53:26 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
+ if [ "${PHP_EXT_SKIP_PHPIZE}" != 'yes' ]; then
${PHPIZE}
+ fi
# Concurrent PHP Apache2 modules support
if has_concurrentmodphp ; then