without separators.
* autoheader.sh: Likewise.
* autoreconf.sh: Likewise. Recognize abbreviations for
"--autoconf-dir" and "--m4dir"
* autoupdate.sh: Likewise. Recognize abbreviations for
"--autoconf-dir"
+2000-10-27 Pavel Roskin <proski@gnu.org>
+
+ * autoconf.sh: Recognize short options followed by arguments
+ without separators.
+ * autoheader.sh: Likewise.
+ * autoreconf.sh: Likewise. Recognize abbreviations for
+ "--autoconf-dir" and "--m4dir"
+ * autoupdate.sh: Likewise. Recognize abbreviations for
+ "--autoconf-dir"
+
2000-10-26 Pavel Roskin <proski@gnu.org>
* autoconf.sh: Don't show obsolete options on "--help". Report
verbose=echo
shift;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=* | --a*=* )
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --trace=* | --t*=* )
+ --trace=* | --t*=* | -t?* )
task=trace
traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
initialization=:
shift;;
- --output=* | --o*=* )
+ --output=* | --o*=* | -o?* )
outfile=$optarg
shift ;;
--output | --o* | -o )
outfile=$1
shift ;;
- --warnings=* | --w*=* )
+ --warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )
verbose=echo
shift;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=* | --a*=* )
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --trace=* | --t*=* )
+ --trace=* | --t*=* | -t?* )
task=trace
traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
initialization=:
shift;;
- --output=* | --o*=* )
+ --output=* | --o*=* | -o?* )
outfile=$optarg
shift ;;
--output | --o* | -o )
outfile=$1
shift ;;
- --warnings=* | --w*=* )
+ --warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )
verbose=echo
shift;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=* | --a*=* )
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --warnings=* | --w*=* )
+ --warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )
verbose=echo
shift;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=* | --a*=* )
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --warnings=* | --w*=* )
+ --warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )
--debug | --d* | -d )
debug=:; shift ;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --m4dir | -M )
+ --m4dir=* | --m4*=* | -M?* )
+ m4dir=$optarg
+ shift ;;
+ --m4dir | --m4* | -M )
test $# = 1 && eval "$exit_missing_arg"
shift
m4dir=$1
shift ;;
- --m4dir=* | -M* )
- m4dir=$optarg
- shift ;;
--force | --forc* | -f )
force=:; shift ;;
--debug | --d* | -d )
debug=:; shift ;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --m4dir | -M )
+ --m4dir=* | --m4*=* | -M?* )
+ m4dir=$optarg
+ shift ;;
+ --m4dir | --m4* | -M )
test $# = 1 && eval "$exit_missing_arg"
shift
m4dir=$1
shift ;;
- --m4dir=* | -M* )
- m4dir=$optarg
- shift ;;
--force | --forc* | -f )
force=:; shift ;;
verbose=echo
shift;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=* | --a*=* )
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --trace=* | --t*=* )
+ --trace=* | --t*=* | -t?* )
task=trace
traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
initialization=:
shift;;
- --output=* | --o*=* )
+ --output=* | --o*=* | -o?* )
outfile=$optarg
shift ;;
--output | --o* | -o )
outfile=$1
shift ;;
- --warnings=* | --w*=* )
+ --warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )
verbose=echo
shift;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=* | --a*=* )
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --warnings=* | --w*=* )
+ --warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )
--debug | --d* | -d )
debug=:; shift ;;
- --localdir=* | --l*=* )
+ --localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
localdir=$1
shift ;;
- --autoconf-dir=*)
+ --autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
- --autoconf-dir | -A* )
+ --autoconf-dir | --a* | -A )
test $# = 1 && eval "$exit_missing_arg"
shift
autoconf_dir=$1
shift ;;
- --macrodir=* | --m*=* )
+ --macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
autoconf_dir=$1
shift ;;
- --m4dir | -M )
+ --m4dir=* | --m4*=* | -M?* )
+ m4dir=$optarg
+ shift ;;
+ --m4dir | --m4* | -M )
test $# = 1 && eval "$exit_missing_arg"
shift
m4dir=$1
shift ;;
- --m4dir=* | -M* )
- m4dir=$optarg
- shift ;;
--force | --forc* | -f )
force=:; shift ;;