summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2003-10-26 21:15:14 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2003-10-26 21:15:14 +0000
commit501e8d7c60e15c4eaff9b299c71ff69e6fab5d92 (patch)
tree9ddb2f9f1f2e0596ab611074bd4106b8ce3a3502 /eclass/php.eclass
parentinitial addition (diff)
downloadhistorical-501e8d7c60e15c4eaff9b299c71ff69e6fab5d92.tar.gz
historical-501e8d7c60e15c4eaff9b299c71ff69e6fab5d92.tar.bz2
historical-501e8d7c60e15c4eaff9b299c71ff69e6fab5d92.zip
fix bug #32022
Diffstat (limited to 'eclass/php.eclass')
-rw-r--r--eclass/php.eclass7
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/php.eclass b/eclass/php.eclass
index be18f162d19d..7e1e257bc32a 100644
--- a/eclass/php.eclass
+++ b/eclass/php.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.88 2003/10/26 21:11:13 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/php.eclass,v 1.89 2003/10/26 21:15:14 robbat2 Exp $
# Author: Robin H. Johnson <robbat2@gentoo.org>
# This EBUILD is totally masked presently. Use it at your own risk. I know it
@@ -392,9 +392,10 @@ php_src_compile() {
filter-flags "-D_LARGEFILE_SOURCE=1"
filter-flags "-D_LARGEFILE_SOURCE"
#fixes bug #14067
- replace-flags "-march=k6" "-march=i586"
- replace-flags "-march=k6-2" "-march=i586"
+ # changed order to run it in reverse for bug #32022 and #12021
replace-flags "-march=k6-3" "-march=i586"
+ replace-flags "-march=k6-2" "-march=i586"
+ replace-flags "-march=k6" "-march=i586"
LIBS="${LIBS}" econf \
${myconf} || die "bad ./configure"