diff options
author | Yves-Alexis Perez <corsac@debian.org> | 2010-10-31 12:40:17 +0100 |
---|---|---|
committer | Nick Schermer <nick@xfce.org> | 2010-10-31 12:40:17 +0100 |
commit | 0a39faed46ec1a72540649c69efd198a118851e8 (patch) | |
tree | 1acd9f29c9f36d5345a9cc7352fb30abbbe0b713 | |
parent | 7d85dae9cbd88e40fe987dc97e9453932e09b2ca (diff) | |
download | xfce4-dev-tools-0a39faed46ec1a72540649c69efd198a118851e8.tar.gz |
Check for automake 1.11.
-rw-r--r-- | scripts/xdt-autogen.in.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/xdt-autogen.in.in b/scripts/xdt-autogen.in.in index c7892b6..74bb2e8 100644 --- a/scripts/xdt-autogen.in.in +++ b/scripts/xdt-autogen.in.in @@ -467,7 +467,7 @@ done ## simply aclocal. ## test -z "${XDT_PROG_ACLOCAL}" && -for i in aclocal-1.10 aclocal-1.9 aclocal-1.8 aclocal; do +for i in aclocal-1.11 aclocal-1.10 aclocal-1.9 aclocal-1.8 aclocal; do (${i} --version) </dev/null >/dev/null 2>&1 && XDT_PROG_ACLOCAL=${i} && break done @@ -511,7 +511,7 @@ done ## simply automake. ## test -z "${XDT_PROG_AUTOMAKE}" && -for i in automake-1.10 automake-1.9 automake-1.8 automake; do +for i in automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake; do (${i} --version) </dev/null >/dev/null 2>&1 && XDT_PROG_AUTOMAKE=${i} && break done |