diff options
author | Luca Longinotti <chtekk@gentoo.org> | 2006-04-18 22:29:31 +0000 |
---|---|---|
committer | Luca Longinotti <chtekk@gentoo.org> | 2006-04-18 22:29:31 +0000 |
commit | 5a9e7a338d7f21422c1b37c10659d7da406a30b2 (patch) | |
tree | 3967b397d9dd2443323e8510114d7c6b3bba9260 /eclass | |
parent | New upstream version. (diff) | |
download | gentoo-2-5a9e7a338d7f21422c1b37c10659d7da406a30b2.tar.gz gentoo-2-5a9e7a338d7f21422c1b37c10659d7da406a30b2.tar.bz2 gentoo-2-5a9e7a338d7f21422c1b37c10659d7da406a30b2.zip |
Change var name to respect standards.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php4_4-sapi.eclass | 6 | ||||
-rw-r--r-- | eclass/php5_0-sapi.eclass | 6 | ||||
-rw-r--r-- | eclass/php5_1-sapi.eclass | 6 |
3 files changed, 9 insertions, 9 deletions
diff --git a/eclass/php4_4-sapi.eclass b/eclass/php4_4-sapi.eclass index d2b731f0e2a5..d64dc0e4198a 100644 --- a/eclass/php4_4-sapi.eclass +++ b/eclass/php4_4-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/php4_4-sapi.eclass,v 1.16 2006/04/18 12:21:14 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php4_4-sapi.eclass,v 1.17 2006/04/18 22:29:31 chtekk Exp $ # # ######################################################################## # @@ -526,10 +526,10 @@ php4_4-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" } diff --git a/eclass/php5_0-sapi.eclass b/eclass/php5_0-sapi.eclass index bc3679b311c6..b83f1534dec6 100644 --- a/eclass/php5_0-sapi.eclass +++ b/eclass/php5_0-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_0-sapi.eclass,v 1.18 2006/04/18 12:21:14 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php5_0-sapi.eclass,v 1.19 2006/04/18 22:29:31 chtekk Exp $ # # ######################################################################## # @@ -514,10 +514,10 @@ php5_0-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" } 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" } |