commit: 09f7b8f5678ebec60bec292f8a78e2b78552258a
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 22 22:43:38 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 23 04:48:48 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09f7b8f5
dev-libs/libtommath: add missing || die
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/libtommath/libtommath-1.2.0.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-libs/libtommath/libtommath-1.2.0.ebuild
b/dev-libs/libtommath/libtommath-1.2.0.ebuild
index c72f2d4668d..98ca746cc7d 100644
--- a/dev-libs/libtommath/libtommath-1.2.0.ebuild
+++ b/dev-libs/libtommath/libtommath-1.2.0.ebuild
@@ -19,7 +19,7 @@ BDEPEND="sys-devel/libtool"
src_prepare() {
default
- # need libtool for cross compilation. Bug #376643
+ # need libtool for cross compilation, bug #376643
cat <<-EOF > configure.ac
AC_INIT(libtommath, 0)
AM_INIT_AUTOMAKE
@@ -28,9 +28,10 @@ src_prepare() {
AC_OUTPUT
EOF
- touch NEWS README AUTHORS ChangeLog Makefile.am
+ touch NEWS README AUTHORS ChangeLog Makefile.am || die
eautoreconf
+
export LIBTOOL="${S}"/libtool
}