summaryrefslogtreecommitdiffstats
path: root/bootstrap
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-03-03 16:05:34 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-03-03 16:05:34 +0000
commitfba17c9e917187874a7187108cc1fc6d824b5832 (patch)
tree1d67b9aa4902e8465ad2d279b8d1309ef8e76fae /bootstrap
parent2011-03-03 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-fba17c9e917187874a7187108cc1fc6d824b5832.tar.bz2
2011-02-03 Ralf Corsépius <ralf.corsepius@rtems.org>
* bootstrap: Add -g option. Switch default to autoreconf.
Diffstat (limited to 'bootstrap')
-rwxr-xr-xbootstrap5
1 files changed, 4 insertions, 1 deletions
diff --git a/bootstrap b/bootstrap
index 2f7d4dc450..df5cd4fc18 100755
--- a/bootstrap
+++ b/bootstrap
@@ -17,7 +17,7 @@ top_srcdir=`dirname $0`
verbose="";
quiet="false"
-mode="generate"
+mode="autoreconf"
usage()
{
@@ -89,6 +89,9 @@ case $1 in
-r|--re|--rec|--reco|--recon|--reconf)
mode="autoreconf";
shift;;
+-g|--ge|--gen|--gene|--gener|--genera|--generat|--generate)
+ mode="generate";
+ shift;;
-*) echo "unknown option $1" ;
usage ;;
*) echo "invalid parameter $1" ;