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
# Check for automake
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
amsuff="${v}"
amvers="${v}"
amvers="`echo ${v} | sed -e 's/^-//'`"
break
fi
done
......@@ -125,8 +125,8 @@ else
PKGCONFIG=no
fi
aclocal=aclocal${amvers}
automake=automake${amvers}
aclocal=aclocal${amsuff}
automake=automake${amsuff}
autoconf=autoconf
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