diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-19 00:54:12 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-19 00:54:12 +0100 |
commit | 1d0c46287d508236506ee59417e8da05c0cee3e5 (patch) | |
tree | e44b4a7ad97472ca0523cff975a958a7b93982e5 /scripts/autoreconf | |
parent | b668796b88da374fefa35b87f305ebcc03147e5d (diff) |
avoid autotools usage on host system
There are to many combinations of autotools on host systems.
If you need to patch the autotool buildsystem of a package
always add a autotool.patch and regenerate configure on your
host. That is the most portable way.
Diffstat (limited to 'scripts/autoreconf')
-rwxr-xr-x | scripts/autoreconf | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/scripts/autoreconf b/scripts/autoreconf deleted file mode 100755 index 844ecd157..000000000 --- a/scripts/autoreconf +++ /dev/null @@ -1,38 +0,0 @@ -#!/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 -else - if [ -x /usr/bin/autoreconf ];then - /usr/bin/autoreconf "$@" - else - /usr/local/bin/autoreconf "$@" - fi -fi |