diff options
author | Sam James <sam@gentoo.org> | 2021-03-22 22:43:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-03-23 04:48:48 +0000 |
commit | 09f7b8f5678ebec60bec292f8a78e2b78552258a (patch) | |
tree | 293aabe0a9d663d9cdcb5d14361cb66fd7e522cd | |
parent | dev-libs/libsodium: add comment re musl SSP, style (diff) | |
download | gentoo-09f7b8f5678ebec60bec292f8a78e2b78552258a.tar.gz gentoo-09f7b8f5678ebec60bec292f8a78e2b78552258a.tar.bz2 gentoo-09f7b8f5678ebec60bec292f8a78e2b78552258a.zip |
dev-libs/libtommath: add missing || die
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | dev-libs/libtommath/libtommath-1.2.0.ebuild | 5 |
1 files 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 c72f2d4668d5..98ca746cc7d9 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 } |