Sophie

Sophie

distrib > Mageia > 8 > armv7hl > by-pkgid > e945bf1db28d250e817909875c564e18 > files > 22

am-utils-6.2.0-8.mga8.src.rpm

commit 37b517045c5afdd9ab849ed61f99a34922954a41
Author: Nicolas Lécureuil <neoclust@mageia.org>
Date:   Mon Oct 12 10:16:55 2020 +0200

    Fix autoconf required version

diff --git a/bootstrap b/bootstrap
index 000b016..c887883 100755
--- a/bootstrap
+++ b/bootstrap
@@ -8,7 +8,8 @@
 validateversion() {
     local v="$(autoreconf --version 2>&1 | head -1)"
     case "$v" in
-    *2.69)	;;
+    *2.69*)	;;
+    *2.70)	;;
     *)		echo "am-utils requires autoconf 2.69, you have:"
 		echo "	$v"
 		exit 1;;