diff options
author | Sam James <sam@gentoo.org> | 2022-05-20 01:19:34 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-20 01:19:34 +0100 |
commit | 68dc143c02ece794317b08e6977ad026f91dfafd (patch) | |
tree | 13cf32ae8643bb4bc134b1e97530ee6a13d83f01 /sci-libs/mpir | |
parent | dev-python/soupsieve: stable 2.3.2 for hppa, bug #844823 (diff) | |
download | gentoo-68dc143c02ece794317b08e6977ad026f91dfafd.tar.gz gentoo-68dc143c02ece794317b08e6977ad026f91dfafd.tar.bz2 gentoo-68dc143c02ece794317b08e6977ad026f91dfafd.zip |
sci-libs/mpir: fix EendMissingArg
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs/mpir')
-rw-r--r-- | sci-libs/mpir/mpir-3.0.0-r1.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sci-libs/mpir/mpir-3.0.0-r1.ebuild b/sci-libs/mpir/mpir-3.0.0-r1.ebuild index 3c3622524aac..15beb9f34033 100644 --- a/sci-libs/mpir/mpir-3.0.0-r1.ebuild +++ b/sci-libs/mpir/mpir-3.0.0-r1.ebuild @@ -25,12 +25,14 @@ PATCHES=( src_prepare() { tc-export CC + default + # In the same way there was QA regarding executable stacks # with GMP we have some here as well. We cannot apply the # GMP solution as yasm is used, at least on x86/amd64. # Furthermore we are able to patch config.ac. - ebegin "Patching assembler files to remove executable sections" + einfo "Patching assembler files to remove executable sections" local i for i in $(find . -type f -name '*.asm') ; do cat >> $i <<-EOF || die @@ -49,7 +51,7 @@ src_prepare() { %endif EOF done - eend + eautoreconf } |