diff options
| author | Brian Evans <grknight@gentoo.org> | 2018-10-25 11:03:27 -0400 |
|---|---|---|
| committer | Brian Evans <grknight@gentoo.org> | 2018-10-25 11:03:27 -0400 |
| commit | d700bd2e4b7ab2dd6874044ce2e60495dc1f1075 (patch) | |
| tree | d2181640980038c2993a29a513b71d4b747e1ded /dev-lang/php/php-7.2.11.ebuild | |
| parent | 8206d14eaf0d2ce6d14941e0e6ada529f4058c64 (diff) | |
| download | gentoo-d700bd2e4b7ab2dd6874044ce2e60495dc1f1075.tar.gz gentoo-d700bd2e4b7ab2dd6874044ce2e60495dc1f1075.tar.bz2 gentoo-d700bd2e4b7ab2dd6874044ce2e60495dc1f1075.zip | |
dev-lang/php: Always call elibtoolize
Certain functions of external commands, like pecl, may use an older
libtool which is included with PHP.
Now we always have an updated ltmain.sh by calling elibtoolize
Bug: https://bugs.gentoo.org/669566
Signed-off-by: Brian Evans <grknight@gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-lang/php/php-7.2.11.ebuild')
| -rw-r--r-- | dev-lang/php/php-7.2.11.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-lang/php/php-7.2.11.ebuild b/dev-lang/php/php-7.2.11.ebuild index 761d9460704b..818e210d1a58 100644 --- a/dev-lang/php/php-7.2.11.ebuild +++ b/dev-lang/php/php-7.2.11.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit flag-o-matic eapi7-ver systemd +inherit flag-o-matic eapi7-ver systemd autotools DESCRIPTION="The PHP language runtime engine" HOMEPAGE="https://secure.php.net/" @@ -224,6 +224,11 @@ src_prepare() { sed -i "s~^include=.*$~include=${PHP_INI_DIR}/fpm.d/*.conf~" \ sapi/fpm/php-fpm.conf.in \ || die 'failed to move the include directory in php-fpm.conf' + + # Bug 669566 - necessary so that build tools are updated for commands like pecl + # Force rebuilding aclocal.m4 + rm -f aclocal.m4 || die "failed to remove aclocal.m4 in src_prepare" + eautoreconf } src_configure() { |
