* 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"
This commit is contained in:
Pavel Roskin 2000-10-27 13:47:54 +00:00
parent 0dd3144b2e
commit c46d9d8480
10 changed files with 64 additions and 54 deletions

View File

@ -1,3 +1,13 @@
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

View File

@ -144,7 +144,7 @@ while test $# -gt 0 ; do
verbose=echo
shift;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -153,7 +153,7 @@ while test $# -gt 0 ; do
localdir=$1
shift ;;
--autoconf-dir=* | --a*=* )
--autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
@ -161,7 +161,7 @@ while test $# -gt 0 ; do
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
--macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
@ -172,7 +172,7 @@ while test $# -gt 0 ; do
autoconf_dir=$1
shift ;;
--trace=* | --t*=* )
--trace=* | --t*=* | -t?* )
task=trace
traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
@ -186,7 +186,7 @@ while test $# -gt 0 ; do
initialization=:
shift;;
--output=* | --o*=* )
--output=* | --o*=* | -o?* )
outfile=$optarg
shift ;;
--output | --o* | -o )
@ -195,7 +195,7 @@ while test $# -gt 0 ; do
outfile=$1
shift ;;
--warnings=* | --w*=* )
--warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )

View File

@ -144,7 +144,7 @@ while test $# -gt 0 ; do
verbose=echo
shift;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -153,7 +153,7 @@ while test $# -gt 0 ; do
localdir=$1
shift ;;
--autoconf-dir=* | --a*=* )
--autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
@ -161,7 +161,7 @@ while test $# -gt 0 ; do
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
--macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
@ -172,7 +172,7 @@ while test $# -gt 0 ; do
autoconf_dir=$1
shift ;;
--trace=* | --t*=* )
--trace=* | --t*=* | -t?* )
task=trace
traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
@ -186,7 +186,7 @@ while test $# -gt 0 ; do
initialization=:
shift;;
--output=* | --o*=* )
--output=* | --o*=* | -o?* )
outfile=$optarg
shift ;;
--output | --o* | -o )
@ -195,7 +195,7 @@ while test $# -gt 0 ; do
outfile=$1
shift ;;
--warnings=* | --w*=* )
--warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )

View File

@ -115,7 +115,7 @@ while test $# -gt 0 ; do
verbose=echo
shift;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -124,7 +124,7 @@ while test $# -gt 0 ; do
localdir=$1
shift ;;
--autoconf-dir=* | --a*=* )
--autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
@ -132,7 +132,7 @@ while test $# -gt 0 ; do
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
--macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
@ -143,7 +143,7 @@ while test $# -gt 0 ; do
autoconf_dir=$1
shift ;;
--warnings=* | --w*=* )
--warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )

View File

@ -115,7 +115,7 @@ while test $# -gt 0 ; do
verbose=echo
shift;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -124,7 +124,7 @@ while test $# -gt 0 ; do
localdir=$1
shift ;;
--autoconf-dir=* | --a*=* )
--autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
@ -132,7 +132,7 @@ while test $# -gt 0 ; do
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
--macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
@ -143,7 +143,7 @@ while test $# -gt 0 ; do
autoconf_dir=$1
shift ;;
--warnings=* | --w*=* )
--warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )

View File

@ -141,7 +141,7 @@ while test $# -gt 0; do
--debug | --d* | -d )
debug=:; shift ;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -150,15 +150,15 @@ while test $# -gt 0; do
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 ;;
@ -169,14 +169,14 @@ while test $# -gt 0; do
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 ;;

View File

@ -141,7 +141,7 @@ while test $# -gt 0; do
--debug | --d* | -d )
debug=:; shift ;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -150,15 +150,15 @@ while test $# -gt 0; do
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 ;;
@ -169,14 +169,14 @@ while test $# -gt 0; do
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 ;;

View File

@ -144,7 +144,7 @@ while test $# -gt 0 ; do
verbose=echo
shift;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -153,7 +153,7 @@ while test $# -gt 0 ; do
localdir=$1
shift ;;
--autoconf-dir=* | --a*=* )
--autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
@ -161,7 +161,7 @@ while test $# -gt 0 ; do
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
--macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
@ -172,7 +172,7 @@ while test $# -gt 0 ; do
autoconf_dir=$1
shift ;;
--trace=* | --t*=* )
--trace=* | --t*=* | -t?* )
task=trace
traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
shift ;;
@ -186,7 +186,7 @@ while test $# -gt 0 ; do
initialization=:
shift;;
--output=* | --o*=* )
--output=* | --o*=* | -o?* )
outfile=$optarg
shift ;;
--output | --o* | -o )
@ -195,7 +195,7 @@ while test $# -gt 0 ; do
outfile=$1
shift ;;
--warnings=* | --w*=* )
--warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )

View File

@ -115,7 +115,7 @@ while test $# -gt 0 ; do
verbose=echo
shift;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -124,7 +124,7 @@ while test $# -gt 0 ; do
localdir=$1
shift ;;
--autoconf-dir=* | --a*=* )
--autoconf-dir=* | --a*=* | -A?* )
autoconf_dir=$optarg
shift ;;
--autoconf-dir | --a* | -A )
@ -132,7 +132,7 @@ while test $# -gt 0 ; do
shift
autoconf_dir=$1
shift ;;
--macrodir=* | --m*=* )
--macrodir=* | --m*=* | -m?* )
echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
autoconf_dir=$optarg
shift ;;
@ -143,7 +143,7 @@ while test $# -gt 0 ; do
autoconf_dir=$1
shift ;;
--warnings=* | --w*=* )
--warnings=* | --w*=* | -W?* )
warnings=$warnings,$optarg
shift ;;
--warnings | --w* | -W )

View File

@ -141,7 +141,7 @@ while test $# -gt 0; do
--debug | --d* | -d )
debug=:; shift ;;
--localdir=* | --l*=* )
--localdir=* | --l*=* | -l?* )
localdir=$optarg
shift ;;
--localdir | --l* | -l )
@ -150,15 +150,15 @@ while test $# -gt 0; do
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 ;;
@ -169,14 +169,14 @@ while test $# -gt 0; do
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 ;;