#!/bin/sh

EXEC=`echo $0 | sed s/"\/configure"/""/`

cd `pwd`/$EXEC/

if which bash 2>/dev/null >/dev/null; then
  BASH=`which bash | grep \^/ | head -1`
else
  echo "Unable to find a suitable interpreter (bash)."
fi

$BASH ./config $*
