summaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-02-11 13:00:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-02-11 13:00:13 +0000
commitd854517744253e918c1209d48d16f566306238d2 (patch)
tree7716674681ea54890c8bdc8ac8057e4558b10b5a /bootstrap
parent2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-d854517744253e918c1209d48d16f566306238d2.tar.bz2
2003-02-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* bootstrap: Remove attempts to detect autoconf and automake using "which" (PR 325).
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap6
1 files changed, 3 insertions, 3 deletions
diff --git a/bootstrap b/bootstrap
index d3169a265f..36787c4b98 100755
--- a/bootstrap
+++ b/bootstrap
@@ -12,7 +12,7 @@
# to be run from the toplevel directory of RTEMS'
# source tree
-AUTOCONF_VERS=2\.5[47]
+AUTOCONF_VERS=2\.57
AUTOMAKE_VERS=1\.7\.2
progname=`basename $0`
@@ -95,7 +95,7 @@ done
case $mode in
generate)
- AUTOCONF=${AUTOCONF-`which autoconf`}
+ AUTOCONF=${AUTOCONF-autoconf}
if test -z "$AUTOCONF"; then
echo "You must have autoconf installed to run $program"
fi
@@ -108,7 +108,7 @@ EOF
exit 1
fi
- AUTOMAKE=${AUTOMAKE-`which automake`}
+ AUTOMAKE=${AUTOMAKE-automake}
if test -z "$AUTOMAKE"; then
echo "You must have automake installed to run $program"
fi