diff options
author | Matti Bickel <mabi@gentoo.org> | 2010-07-27 13:24:39 +0000 |
---|---|---|
committer | Matti Bickel <mabi@gentoo.org> | 2010-07-27 13:24:39 +0000 |
commit | 5e4ffceb48713fdcbffc3567706aab7e951b8874 (patch) | |
tree | f80d87c86062caeaa4cb77f0b731ca3a1c4fe11d /eclass/php-ext-source-r1.eclass | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-5e4ffceb48713fdcbffc3567706aab7e951b8874.tar.gz gentoo-2-5e4ffceb48713fdcbffc3567706aab7e951b8874.tar.bz2 gentoo-2-5e4ffceb48713fdcbffc3567706aab7e951b8874.zip |
fix bug #329071
Diffstat (limited to 'eclass/php-ext-source-r1.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 |