summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2006-04-18 22:29:31 +0000
committerLuca Longinotti <chtekk@gentoo.org>2006-04-18 22:29:31 +0000
commit2be92573ab3aba5bc4d7b514de4eff4d6cd00878 (patch)
tree60790b35864fd40df4b62c2f719c9f10b04f2ee3 /eclass/php5_1-sapi.eclass
parentNew upstream version. (diff)
downloadhistorical-2be92573ab3aba5bc4d7b514de4eff4d6cd00878.tar.gz
historical-2be92573ab3aba5bc4d7b514de4eff4d6cd00878.tar.bz2
historical-2be92573ab3aba5bc4d7b514de4eff4d6cd00878.zip
Change var name to respect standards.
Diffstat (limited to 'eclass/php5_1-sapi.eclass')
-rw-r--r--eclass/php5_1-sapi.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/php5_1-sapi.eclass b/eclass/php5_1-sapi.eclass
index 50f46c960963..7b6281f1b9f7 100644
--- a/eclass/php5_1-sapi.eclass
+++ b/eclass/php5_1-sapi.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2006 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.21 2006/04/18 12:21:14 chtekk Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php5_1-sapi.eclass,v 1.22 2006/04/18 22:29:31 chtekk Exp $
#
# ########################################################################
#
@@ -566,10 +566,10 @@ php5_1-sapi_src_compile() {
fi
# Support user-passed configuration parameters
- [[ -z "${MY_CONF}" ]] && MY_CONF=""
+ [[ -z "${EXTRA_ECONF}" ]] && EXTRA_ECONF=""
# We don't use econf, because we need to override all of its settings
- ./configure --prefix=${destdir} --sysconfdir=/etc --cache-file=./config.cache ${my_conf} ${MY_CONF} || die "configure failed"
+ ./configure --prefix=${destdir} --sysconfdir=/etc --cache-file=./config.cache ${my_conf} ${EXTRA_ECONF} || die "configure failed"
emake || die "make failed"
}