Commit 6871383f authored by Christophe Mutricy's avatar Christophe Mutricy

support for automake 1.10. Patch courtesy of scop on trac. Fix #1041

parent cfafc7da
...@@ -64,10 +64,10 @@ esac ...@@ -64,10 +64,10 @@ esac
# Check for automake # Check for automake
amvers="no" amvers="no"
for v in "-1.9" "19" "-1.8" "18" "-1.7" "17"; do for v in "-1.10" "110" "-1.9" "19" "-1.8" "18" "-1.7" "17"; do
if automake${v} --version >/dev/null 2>&1; then if automake${v} --version >/dev/null 2>&1; then
amsuff="${v}" amsuff="${v}"
amvers="${v}" amvers="`echo ${v} | sed -e 's/^-//'`"
break break
fi fi
done done
...@@ -125,8 +125,8 @@ else ...@@ -125,8 +125,8 @@ else
PKGCONFIG=no PKGCONFIG=no
fi fi
aclocal=aclocal${amvers} aclocal=aclocal${amsuff}
automake=automake${amvers} automake=automake${amsuff}
autoconf=autoconf autoconf=autoconf
autoheader=autoheader autoheader=autoheader
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment