From 5c0f7327451ba44f43aaaf28816c7ed172128ccc Mon Sep 17 00:00:00 2001 From: Sebastien Estienne Date: Mon, 24 Oct 2005 23:44:05 +0000 Subject: * use which in autogen.sh instead of type -p * add NetBSD support in bootstrap.sh * Netbsd doesn t have RLIMIT_AS -> ifdef * reorder an include in dnsconfd/main.c git-svn-id: file:///home/lennart/svn/public/avahi/trunk@862 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- autogen.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 902181d..f75ad60 100755 --- a/autogen.sh +++ b/autogen.sh @@ -26,12 +26,14 @@ run_versioned() { V=$(echo "$2" | sed -e 's,\.,,g') - if type -p "$1$V" &> /dev/null ; then + if [ -e "`which $1$V`" ] ; then P="$1$V" - elif type -p "$1-$2" &> /dev/null ; then - P="$1-$2" else - P="$1" + if [ -e "`which $1-$2`" ] ; then + P="$1-$2" + else + P="$1" + fi fi shift 2 -- cgit