commit: 65a2e3e33d23e2051597e15c70871fc3df43f3ae
parent 8bc3f32d53c0cccf39db66f3232fd4ee29c164ca
Author: Andrius Štikonas <andrius@stikonas.eu>
Date: Fri, 19 Mar 2021 15:39:42 +0000
autotools: Run make install with MAKEINFO=true to avoid intermittent build failures.
Diffstat:
3 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/sysa/autoconf-2.12/autoconf-2.12.sh b/sysa/autoconf-2.12/autoconf-2.12.sh
@@ -16,3 +16,7 @@ src_configure() {
src_compile() {
make MAKEINFO=true
}
+
+src_install() {
+ make install MAKEINFO=true
+}
diff --git a/sysa/autoconf-2.13/autoconf-2.13.sh b/sysa/autoconf-2.13/autoconf-2.13.sh
@@ -16,3 +16,7 @@ src_configure() {
src_compile() {
make MAKEINFO=true
}
+
+src_install() {
+ make install MAKEINFO=true
+}
diff --git a/sysa/automake-1.4-p6/automake-1.4-p6.sh b/sysa/automake-1.4-p6/automake-1.4-p6.sh
@@ -19,3 +19,7 @@ src_configure() {
src_compile() {
make MAKEINFO=true
}
+
+src_install() {
+ make install MAKEINFO=true
+}