summaryrefslogtreecommitdiff
path: root/scripts/autoconf
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-02-20 17:20:42 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-02-20 17:20:42 +0100
commit6ef4e0a6d3454a9d9ca955ddad78d9d51a7305c7 (patch)
treee54ce758c6e694253b2a9238c4e14c2d40310c29 /scripts/autoconf
parent0097a8249ca2d1a498b457019db15d3540a259f3 (diff)
parent3aa3f2fc1f6272b36726d9ea7ee20f6ff08ae868 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/autoconf')
-rwxr-xr-xscripts/autoconf26
1 files changed, 0 insertions, 26 deletions
diff --git a/scripts/autoconf b/scripts/autoconf
deleted file mode 100755
index ce75759cf..000000000
--- a/scripts/autoconf
+++ /dev/null
@@ -1,26 +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 autoconf-2.62)
-ac261=$(which autoconf-2.61)
-
-if [ ! -z "$ac262" -a -x "$ac262" ];then
- if [ -x /usr/bin/autoconf ];then
- AUTOCONF_VERSION=2.62 /usr/bin/autoconf "$@"
- else
- AUTOCONF_VERSION=2.62 /usr/local/bin/autoconf "$@"
- fi
-elif [ ! -z "$ac261" -a -x "$ac261" ];then
- if [ -x /usr/bin/autoconf ];then
- AUTOCONF_VERSION=2.61 /usr/bin/autoconf "$@"
- else
- AUTOCONF_VERSION=2.61 /usr/local/bin/autoconf "$@"
- fi
-else
- if [ -x /usr/bin/autoconf ];then
- /usr/bin/autoconf "$@"
- else
- /usr/local/bin/autoconf "$@"
- fi
-fi