+2005-05-24 Stepan Kasal <kasal@ucw.cz>
+
+ * bin/autoconf.as: Make more use of "shift 2" in option processing.
+
2005-05-24 Stepan Kasal <kasal@ucw.cz>
* bin/Makefile.am: Merge the two rules for creating scripts.
shift ;;
--trace | -t )
test $# = 1 && eval "$exit_missing_arg"
- shift
- traces="$traces --trace='"`echo "$1" | sed "s/'/'\\\\\\\\''/g"`"'"
- shift ;;
+ traces="$traces --trace='"`echo "$2" | sed "s/'/'\\\\\\\\''/g"`"'"
+ shift 2 ;;
--initialization | -i )
autom4te_options="$autom4te_options --melt"
shift;;
shift ;;
--output | -o )
test $# = 1 && eval "$exit_missing_arg"
- shift
- outfile=$1
- shift ;;
+ outfile=$2
+ shift 2 ;;
-- ) # Stop option processing
shift; break ;;