autotools: Run make install with MAKEINFO=true to avoid intermittent build failures.

This commit is contained in:
Andrius Štikonas 2021-03-19 15:39:42 +00:00
parent 8bc3f32d53
commit 65a2e3e33d
3 changed files with 12 additions and 0 deletions

View File

@ -16,3 +16,7 @@ src_configure() {
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}

View File

@ -16,3 +16,7 @@ src_configure() {
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}

View File

@ -19,3 +19,7 @@ src_configure() {
src_compile() {
make MAKEINFO=true
}
src_install() {
make install MAKEINFO=true
}