diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-17 22:02:40 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-17 22:02:40 +0100 |
commit | 4e434808f57408d58b48e2c9c2fa0401ccb0f967 (patch) | |
tree | 13de16aec026c7494921c9894870699bec20e75b /scripts/autoreconf | |
parent | a7398b69f0946733ea2bd7e90176c1cab07376d0 (diff) | |
parent | f9011c1275b13f39e4ab4552173bfb91b2ffae56 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/autoreconf')
-rwxr-xr-x | scripts/autoreconf | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/scripts/autoreconf b/scripts/autoreconf new file mode 100755 index 000000000..ce2aa1120 --- /dev/null +++ b/scripts/autoreconf @@ -0,0 +1,32 @@ +#!/usr/bin/env bash +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +ac262=$(which autoreconf-2.62) +ac261=$(which autoreconf-2.61) + +if [ ! -z "$ac262" -a -x "$ac262" ];then + if [ -x /usr/bin/autoreconf ];then + env \ + AUTOMAKE_VERSION=1.9 \ + AUTOCONF_VERSION=2.62 \ + /usr/bin/autoreconf "$@" + else + env \ + AUTOMAKE_VERSION=1.9 \ + AUTOCONF_VERSION=2.62 \ + /usr/local/bin/autoreconf "$@" + fi +elif [ ! -z "$ac261" -a -x "$ac261" ];then + if [ -x /usr/bin/autoreconf ];then + env \ + AUTOMAKE_VERSION=1.9 \ + AUTOCONF_VERSION=2.61 \ + /usr/bin/autoreconf "$@" + else + env \ + AUTOMAKE_VERSION=1.9 \ + AUTOCONF_VERSION=2.61 \ + /usr/local/bin/autoreconf "$@" + fi +fi |