autotools: add MAKEFINFO=true fix to all autotools.

This commit is contained in:
Andrius Štikonas 2021-03-20 00:33:56 +00:00
parent 31410ab234
commit 705ebf471e
13 changed files with 95 additions and 6 deletions

View file

@ -13,6 +13,10 @@ src_configure() {
./configure --prefix=/after
}
src_compile() {
make MAKEINFO=true
}
src_install() {
# cleanup old manual install
rm "${PREFIX}"/bin/automake-1.6
@ -20,5 +24,5 @@ src_install() {
rm -rf "${PREFIX}"/share/automake-1.6
rm -rf "${PREFIX}"/share/aclocal-1.6
default_src_install
make install MAKEINFO=true
}