sci-electronics/magic: fix autoconf 2.71 compatibility in stable

Bug: https://bugs.gentoo.org/775422
Closes: https://bugs.gentoo.org/814788
See: be7ed26f00
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2021-09-29 23:20:52 +01:00
parent 7865b6ffc3
commit c4fcafe9df

View File

@@ -31,6 +31,12 @@ src_prepare() {
eautoreconf
cd ..
sed -i -e "s: -pg : :" tcltk/Makefile || die
# required for >=autoconf-2.70 (bug #775422)
local ac_aux_file
for ac_aux_file in install-sh config.guess config.sub ; do
ln -s scripts/${ac_aux_file} ${ac_aux_file} || die
done
}
src_configure() {