diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-02-11 17:31:37 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-02-11 17:31:37 +0000 |
commit | 4a6622bce23b6a7081d7996ab5d25f25afd211df (patch) | |
tree | bd347a509556a974d41fe0e6dc5574d492303789 /eclass | |
parent | New release. (Manifest recommit) (diff) | |
download | gentoo-2-4a6622bce23b6a7081d7996ab5d25f25afd211df.tar.gz gentoo-2-4a6622bce23b6a7081d7996ab5d25f25afd211df.tar.bz2 gentoo-2-4a6622bce23b6a7081d7996ab5d25f25afd211df.zip |
attempt to fix jpeg linking bug in PHP - bug #41220, bug #27525.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-sapi.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/php-sapi.eclass b/eclass/php-sapi.eclass index e8bc12d722d4..e9982360ff78 100644 --- a/eclass/php-sapi.eclass +++ b/eclass/php-sapi.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-sapi.eclass,v 1.8 2004/02/11 09:11:08 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-sapi.eclass,v 1.9 2004/02/11 17:31:37 robbat2 Exp $ # Author: Robin H. Johnson <robbat2@gentoo.org> inherit eutils flag-o-matic @@ -442,7 +442,7 @@ php-sapi_src_compile() { replace-flags "-march=k6" "-march=i586" if [ -z "${PHP_SKIP_CONFIGURE}" ]; then - LIBS="${LIBS}" econf \ + LDFLAGS="${LDFLAGS} -L/usr/lib" LIBS="${LIBS}" econf \ ${myconf} || die "bad ./configure, please include ${MY_P}/config.log in any bug reports." fi |