# HG changeset patch # User Matti Hamalainen # Date 1167641403 0 # Node ID 4cad402fea7150ea09294cfefefa78845aac9aa3 # Parent 06f944263d9aa5797ca6fd4e92b8cbf1a8e31e55 Fixes diff -r 06f944263d9a -r 4cad402fea71 bootstrap.sh --- a/bootstrap.sh Mon Jan 01 08:47:00 2007 +0000 +++ b/bootstrap.sh Mon Jan 01 08:50:03 2007 +0000 @@ -18,13 +18,13 @@ PRG2=`which $1` if test -n "$PRG1" && test -x "$PRG1"; then echo "* $1-$WANT_AM_VERSION $2" -eval `$1-$WANT_AM_VERSION $2` +eval $1-$WANT_AM_VERSION $2 else if test -n "$PRG2" && test -x "$PRG2"; then echo "* Warning! Could not find $1-$WANT_AM_VERSION!" echo " Trying '$1', which may fail due to incompabilities." echo "* $1 $2" -eval `$1 $2` +eval $1 $2 else ftest_msg "'$1-$WANT_AM_VERSION' or '$1'" exit 1 @@ -37,7 +37,7 @@ PRG1=`which $1` if test -n "$PRG1" && test -x "$PRG1"; then echo "* $1 $2" -eval `$1 $2` +eval $1 $2 else ftest_msg "'$1'" exit 1 @@ -49,7 +49,7 @@ PRG1=`which $1` if test -n "$PRG1" && test -x "$PRG1"; then echo "* $1 $2" -eval `$1 $2` +eval $1 $2 else echo "Could not find runnable '$1', perhaps $3 package is not installed" echo "or it is not in the PATH. Please install $4."