diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-09-22 18:35:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-09-22 18:35:48 +0000 |
commit | 5284271f28db63e1bac248fba36cb2cb27f991a8 (patch) | |
tree | 4e9e924dc393559716e65ca6117dc4a28e211db7 /eclass | |
parent | patch uclibctoolize uses (diff) | |
download | historical-5284271f28db63e1bac248fba36cb2cb27f991a8.tar.gz historical-5284271f28db63e1bac248fba36cb2cb27f991a8.tar.bz2 historical-5284271f28db63e1bac248fba36cb2cb27f991a8.zip |
build shared libraries with uClibc
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php5-sapi.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/php5-sapi.eclass b/eclass/php5-sapi.eclass index 38bc1ae6495a..dedd092e9022 100644 --- a/eclass/php5-sapi.eclass +++ b/eclass/php5-sapi.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/php5-sapi.eclass,v 1.28 2004/09/15 07:45:15 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php5-sapi.eclass,v 1.29 2004/09/22 18:35:48 vapier Exp $ # # eclass/php5-sapi.eclass # Eclass for building different php5 SAPI instances @@ -12,7 +12,7 @@ # # ======================================================================== -inherit confutils +inherit confutils libtool ECLASS=php5-sapi INHERITED="$INHERITED $ECLASS" @@ -326,6 +326,9 @@ php5-sapi_src_unpack () { sed -i.orig -e 's,-i -a -n php5,-i -n php5,g' $i done + # fix configure scripts to recognize uClibc + uclibctoolize + # Just in case ;-) chmod 755 configure } |