From 138f0238a83167d440339a901056618e7a8d0236 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Wed, 17 Feb 2010 22:30:27 +0100 Subject: add fallback for autoconf --- scripts/autoreconf | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'scripts/autoreconf') diff --git a/scripts/autoreconf b/scripts/autoreconf index ce2aa1120..844ecd157 100755 --- a/scripts/autoreconf +++ b/scripts/autoreconf @@ -29,4 +29,10 @@ elif [ ! -z "$ac261" -a -x "$ac261" ];then 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 -- cgit v1.2.3