changeset 438:4cad402fea71

Fixes
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 01 Jan 2007 08:50:03 +0000
parents 06f944263d9a
children f707bee41d0e
files bootstrap.sh
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- 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."