commit: 17f734acf0c58267fce1a8fc89cdfab876c33068 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Fri Apr 27 13:17:20 2018 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Fri Apr 27 13:17:33 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17f734ac
sys-devel/libtool: Fixed src_prepare with USE="vanilla". Closes: https://bugs.gentoo.org/654198 Package-Manager: Portage-2.3.31, Repoman-2.3.9 sys-devel/libtool/libtool-2.4.6-r5.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sys-devel/libtool/libtool-2.4.6-r5.ebuild b/sys-devel/libtool/libtool-2.4.6-r5.ebuild index 710968a99a5..0146056fc90 100644 --- a/sys-devel/libtool/libtool-2.4.6-r5.ebuild +++ b/sys-devel/libtool/libtool-2.4.6-r5.ebuild @@ -66,9 +66,12 @@ src_prepare() { ) fi - use vanilla && return 0 - - default + if use vanilla ; then + eapply_user + return 0 + else + default + fi if use prefix ; then # seems that libtool has to know about EPREFIX a little bit
