summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@gentoo.org>2005-02-14 19:39:03 +0000
committerSebastian Bergmann <sebastian@gentoo.org>2005-02-14 19:39:03 +0000
commitb65c2b5dd3fd6e018df0c7212d2ad35bf0ab9d64 (patch)
treee12385a433757837a26d7baf3ef1366b06bd67a6 /eclass/php-ext-base.eclass
parentFixing configure to not consider kernel sources thanks to Frank Van Damme <fr... (diff)
downloadgentoo-2-b65c2b5dd3fd6e018df0c7212d2ad35bf0ab9d64.tar.gz
gentoo-2-b65c2b5dd3fd6e018df0c7212d2ad35bf0ab9d64.tar.bz2
gentoo-2-b65c2b5dd3fd6e018df0c7212d2ad35bf0ab9d64.zip
Fix bug 64696.
Diffstat (limited to 'eclass/php-ext-base.eclass')
-rw-r--r--eclass/php-ext-base.eclass6
1 files changed, 5 insertions, 1 deletions
diff --git a/eclass/php-ext-base.eclass b/eclass/php-ext-base.eclass
index 840006a40d47..60ae325b13a3 100644
--- a/eclass/php-ext-base.eclass
+++ b/eclass/php-ext-base.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-base.eclass,v 1.15 2004/09/05 20:57:19 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-base.eclass,v 1.16 2005/02/14 19:39:03 sebastian Exp $
#
# Author: Tal Peer <coredumb@gentoo.org>
# Author: Stuart Herbert <stuart@gentoo.org>
@@ -55,6 +55,10 @@ php-ext-base_buildinilist () {
if [ -f /etc/php/${x}-php4/php.ini ]; then
PHPINIFILELIST="${PHPINIFILELIST} etc/php/${x}-php4/php.ini"
fi
+
+ if [ -f /etc/php/${x}-php5/php.ini ]; then
+ PHPINIFILELIST="${PHPINIFILELIST} etc/php/${x}-php5/php.ini"
+ fi
done
if [ "${PHPINIFILELIST}+" = "+" ] ; then