diff options
author | 2010-07-27 13:24:39 +0000 | |
---|---|---|
committer | 2010-07-27 13:24:39 +0000 | |
commit | d95fe6240c13ccd0a818173cf9cb11d52f31d2b7 (patch) | |
tree | 337f21b480a6ee4070ea1bd60541d08720a1a9bb /eclass | |
parent | Automated update of use.local.desc (diff) | |
download | historical-d95fe6240c13ccd0a818173cf9cb11d52f31d2b7.tar.gz historical-d95fe6240c13ccd0a818173cf9cb11d52f31d2b7.tar.bz2 historical-d95fe6240c13ccd0a818173cf9cb11d52f31d2b7.zip |
fix bug #329071
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/php-ext-source-r1.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/php-ext-source-r1.eclass b/eclass/php-ext-source-r1.eclass index ad8e1ab218ca..98ab96c08527 100644 --- a/eclass/php-ext-source-r1.eclass +++ b/eclass/php-ext-source-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r1.eclass,v 1.20 2010/07/20 10:49:21 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/php-ext-source-r1.eclass,v 1.21 2010/07/27 13:24:39 mabi Exp $ # # Author: Tal Peer <coredumb@gentoo.org> # Author: Stuart Herbert <stuart@gentoo.org> @@ -54,7 +54,8 @@ php-ext-source-r1_src_unpack() { php-ext-source-r1_phpize() { has_php # Create configure out of config.m4 - ${PHPIZE} + # need to convert WANT_AUTO*=latest to an actual version (bug #329071) + autotools_run_tool phpize # force run of libtoolize and regeneration of related autotools # files (bug 220519) rm aclocal.m4 |