]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* autoconf.sh: Temporarily disable recognizing of abbreviated
authorPavel Roskin <proski@gnu.org>
Tue, 7 Nov 2000 17:58:43 +0000 (17:58 +0000)
committerPavel Roskin <proski@gnu.org>
Tue, 7 Nov 2000 17:58:43 +0000 (17:58 +0000)
long options - it's hard to maintain them by hand.
* autoheader.sh: Likewise.
* autoreconf.sh: Likewise.
* autoupdate.sh: Likewise.
* ifnames.sh: Likewise.

13 files changed:
ChangeLog
autoconf.in
autoconf.sh
autoheader.in
autoheader.sh
autoreconf.in
autoreconf.sh
bin/autoconf.in
bin/autoheader.in
bin/autoreconf.in
bin/ifnames.in
ifnames.in
ifnames.sh

index 8cb673e4bd455d8542c6c8a92990ddbae7998f86..42801b8797f9c373685703038d9ce3f78e9dd1f8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2000-11-07  Pavel Roskin  <proski@gnu.org>
+
+       * autoconf.sh: Temporarily disable recognizing of abbreviated
+       long options - it's hard to maintain them by hand.
+       * autoheader.sh: Likewise.
+       * autoreconf.sh: Likewise.
+       * autoupdate.sh: Likewise.
+       * ifnames.sh: Likewise.
+
 2000-11-07  Akim Demaille  <akim@epita.fr>
 
        * aclang.m4 (ac_cv_prog_gcc, ac_cv_prog_gxx, ac_cv_prog_g77):
index fe51ab853b2d1713db3295c272ebd09c3509f02e..24221af960cbfd897bc943f0d9448d5d1902cf4f 100644 (file)
@@ -133,72 +133,72 @@ while test $# -gt 0 ; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case $1 in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --trace=* | --t*=* | -t?* )
+    --trace=* | -t?* )
        task=trace
        traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
        shift ;;
-    --trace | --t* | -t )
+    --trace | -t )
        test $# = 1 && eval "$exit_missing_arg"
        task=trace
        shift
        traces="$traces '"`echo "$1" | sed "s/'/'\\\\\\\\''/g"`"'"
        shift ;;
-    --initialization | --i* | -i )
+    --initialization | -i )
        initialization=:
        shift;;
 
-    --output=* | --o*=* | -o?* )
+    --output=* | -o?* )
        outfile=$optarg
        shift ;;
-    --output | --o* | -o )
+    --output | -o )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        outfile=$1
        shift ;;
 
-    --warnings=* | --w*=* | -W?* )
+    --warnings=* | -W?* )
        warnings=$warnings,$optarg
        shift ;;
-    --warnings | --w* | -W )
+    --warnings | -W )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        warnings=$warnings,$1
index fe51ab853b2d1713db3295c272ebd09c3509f02e..24221af960cbfd897bc943f0d9448d5d1902cf4f 100644 (file)
@@ -133,72 +133,72 @@ while test $# -gt 0 ; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case $1 in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --trace=* | --t*=* | -t?* )
+    --trace=* | -t?* )
        task=trace
        traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
        shift ;;
-    --trace | --t* | -t )
+    --trace | -t )
        test $# = 1 && eval "$exit_missing_arg"
        task=trace
        shift
        traces="$traces '"`echo "$1" | sed "s/'/'\\\\\\\\''/g"`"'"
        shift ;;
-    --initialization | --i* | -i )
+    --initialization | -i )
        initialization=:
        shift;;
 
-    --output=* | --o*=* | -o?* )
+    --output=* | -o?* )
        outfile=$optarg
        shift ;;
-    --output | --o* | -o )
+    --output | -o )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        outfile=$1
        shift ;;
 
-    --warnings=* | --w*=* | -W?* )
+    --warnings=* | -W?* )
        warnings=$warnings,$optarg
        shift ;;
-    --warnings | --w* | -W )
+    --warnings | -W )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        warnings=$warnings,$1
index c2ccaa72085b9b2412d76dd4a6f406470ca28d4e..9dac38fd86d3398a80d0d74e6879500cf9a27fb5 100644 (file)
@@ -104,49 +104,49 @@ while test $# -gt 0 ; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case $1 in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --warnings=* | --w*=* | -W?* )
+    --warnings=* | -W?* )
        warnings=$warnings,$optarg
        shift ;;
-    --warnings | --w* | -W )
+    --warnings | -W )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        warnings=$warnings,$1
index c2ccaa72085b9b2412d76dd4a6f406470ca28d4e..9dac38fd86d3398a80d0d74e6879500cf9a27fb5 100644 (file)
@@ -104,49 +104,49 @@ while test $# -gt 0 ; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case $1 in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --warnings=* | --w*=* | -W?* )
+    --warnings=* | -W?* )
        warnings=$warnings,$optarg
        shift ;;
-    --warnings | --w* | -W )
+    --warnings | -W )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        warnings=$warnings,$1
index 18a62d66734671ca43876db6e925ecca786146d5..44977b01e0744747ed7859ed7908ef6b718f386c 100644 (file)
@@ -130,60 +130,60 @@ while test $# -gt 0; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case "$1" in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --m4dir=* | --m4*=* | -M?* )
+    --m4dir=* | -M?* )
        m4dir=$optarg
        shift ;;
-    --m4dir | --m4* | -M )
+    --m4dir | -M )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        m4dir=$1
        shift ;;
 
-     --force | --forc* | -f )
+     --force | -f )
        force=:; shift ;;
 
-     --install | --ins* | -i )
+     --install | -i )
        install=:; shift ;;
-     --symlink | --s* | -s )
+     --symlink | -s )
        symlink=:; shift ;;
 
      # Options of Automake.
index 18a62d66734671ca43876db6e925ecca786146d5..44977b01e0744747ed7859ed7908ef6b718f386c 100644 (file)
@@ -130,60 +130,60 @@ while test $# -gt 0; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case "$1" in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --m4dir=* | --m4*=* | -M?* )
+    --m4dir=* | -M?* )
        m4dir=$optarg
        shift ;;
-    --m4dir | --m4* | -M )
+    --m4dir | -M )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        m4dir=$1
        shift ;;
 
-     --force | --forc* | -f )
+     --force | -f )
        force=:; shift ;;
 
-     --install | --ins* | -i )
+     --install | -i )
        install=:; shift ;;
-     --symlink | --s* | -s )
+     --symlink | -s )
        symlink=:; shift ;;
 
      # Options of Automake.
index fe51ab853b2d1713db3295c272ebd09c3509f02e..24221af960cbfd897bc943f0d9448d5d1902cf4f 100644 (file)
@@ -133,72 +133,72 @@ while test $# -gt 0 ; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case $1 in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --trace=* | --t*=* | -t?* )
+    --trace=* | -t?* )
        task=trace
        traces="$traces '"`echo "$optarg" | sed "s/'/'\\\\\\\\''/g"`"'"
        shift ;;
-    --trace | --t* | -t )
+    --trace | -t )
        test $# = 1 && eval "$exit_missing_arg"
        task=trace
        shift
        traces="$traces '"`echo "$1" | sed "s/'/'\\\\\\\\''/g"`"'"
        shift ;;
-    --initialization | --i* | -i )
+    --initialization | -i )
        initialization=:
        shift;;
 
-    --output=* | --o*=* | -o?* )
+    --output=* | -o?* )
        outfile=$optarg
        shift ;;
-    --output | --o* | -o )
+    --output | -o )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        outfile=$1
        shift ;;
 
-    --warnings=* | --w*=* | -W?* )
+    --warnings=* | -W?* )
        warnings=$warnings,$optarg
        shift ;;
-    --warnings | --w* | -W )
+    --warnings | -W )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        warnings=$warnings,$1
index c2ccaa72085b9b2412d76dd4a6f406470ca28d4e..9dac38fd86d3398a80d0d74e6879500cf9a27fb5 100644 (file)
@@ -104,49 +104,49 @@ while test $# -gt 0 ; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case $1 in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --warnings=* | --w*=* | -W?* )
+    --warnings=* | -W?* )
        warnings=$warnings,$optarg
        shift ;;
-    --warnings | --w* | -W )
+    --warnings | -W )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        warnings=$warnings,$1
index 18a62d66734671ca43876db6e925ecca786146d5..44977b01e0744747ed7859ed7908ef6b718f386c 100644 (file)
@@ -130,60 +130,60 @@ while test $# -gt 0; do
   optarg=`expr "x$1" : 'x--[^=]*=\(.*\)' \| \
                "x$1" : 'x-.\(.*\)'`
   case "$1" in
-    --version | --vers* | -V )
+    --version | -V )
        echo "$version" ; exit 0 ;;
-    --help | --h* | -h )
+    --help | -h )
        echo "$usage"; exit 0 ;;
 
-    --verbose | --verb* | -v )
+    --verbose | -v )
        verbose=echo
        shift;;
-    --debug | --d* | -d )
+    --debug | -d )
        debug=:; shift ;;
 
-    --localdir=* | --l*=* | -l?* )
+    --localdir=* | -l?* )
        localdir=$optarg
        shift ;;
-    --localdir | --l* | -l )
+    --localdir | -l )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        localdir=$1
        shift ;;
 
-    --autoconf-dir=* | --a*=* | -A?* )
+    --autoconf-dir=* | -A?* )
       autoconf_dir=$optarg
        shift ;;
-    --autoconf-dir | --a* | -A )
+    --autoconf-dir | -A )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
-    --macrodir=* | --m*=* | -m?* )
+    --macrodir=* | -m?* )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        autoconf_dir=$optarg
        shift ;;
-    --macrodir | --m* | -m )
+    --macrodir | -m )
        echo "$me: warning: --macrodir is obsolete, use --autoconf-dir" >&2
        test $# = 1 && eval "$exit_missing_arg"
        shift
        autoconf_dir=$1
        shift ;;
 
-    --m4dir=* | --m4*=* | -M?* )
+    --m4dir=* | -M?* )
        m4dir=$optarg
        shift ;;
-    --m4dir | --m4* | -M )
+    --m4dir | -M )
        test $# = 1 && eval "$exit_missing_arg"
        shift
        m4dir=$1
        shift ;;
 
-     --force | --forc* | -f )
+     --force | -f )
        force=:; shift ;;
 
-     --install | --ins* | -i )
+     --install | -i )
        install=:; shift ;;
-     --symlink | --s* | -s )
+     --symlink | -s )
        symlink=:; shift ;;
 
      # Options of Automake.
index 4f16d1f82800791c2ac609b987d6cec4c4f31963..3099566e1e49cc6d23690547ed24c6e04e0b35a9 100644 (file)
@@ -52,9 +52,9 @@ Try \`$me --help' for more information."
 
 while test $# -gt 0; do
   case "$1" in
-  --h* | -h )
+  --help | -h )
     echo "$usage"; exit 0 ;;
-  --v* | -V )
+  --version | -V )
     echo "$version"; exit 0 ;;
   --)     # Stop option processing.
     shift; break ;;
index 4f16d1f82800791c2ac609b987d6cec4c4f31963..3099566e1e49cc6d23690547ed24c6e04e0b35a9 100644 (file)
@@ -52,9 +52,9 @@ Try \`$me --help' for more information."
 
 while test $# -gt 0; do
   case "$1" in
-  --h* | -h )
+  --help | -h )
     echo "$usage"; exit 0 ;;
-  --v* | -V )
+  --version | -V )
     echo "$version"; exit 0 ;;
   --)     # Stop option processing.
     shift; break ;;
index 4f16d1f82800791c2ac609b987d6cec4c4f31963..3099566e1e49cc6d23690547ed24c6e04e0b35a9 100644 (file)
@@ -52,9 +52,9 @@ Try \`$me --help' for more information."
 
 while test $# -gt 0; do
   case "$1" in
-  --h* | -h )
+  --help | -h )
     echo "$usage"; exit 0 ;;
-  --v* | -V )
+  --version | -V )
     echo "$version"; exit 0 ;;
   --)     # Stop option processing.
     shift; break ;;