From 1d0c46287d508236506ee59417e8da05c0cee3e5 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 19 Feb 2010 00:54:12 +0100 Subject: 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. --- scripts/autoconf | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100755 scripts/autoconf (limited to 'scripts/autoconf') 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 -- cgit v1.2.3