]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acgeneral.m4 (_AC_INIT_PARSE_ARGS): Fix copy n' paste typos in
authorAkim Demaille <akim@epita.fr>
Wed, 8 Mar 2000 11:13:31 +0000 (11:13 +0000)
committerAkim Demaille <akim@epita.fr>
Wed, 8 Mar 2000 11:13:31 +0000 (11:13 +0000)
`--with-*', `--without-*' and `*' decoding.
Reported by Raja R Harinath.
Fixes autoconf/119.

ChangeLog
THANKS
acgeneral.m4
lib/autoconf/general.m4

index 14147e265a0db3b3570aa74118e5a4d8aaaaeaef..6b073724684978beb00bc31b2cbca3f867c57272 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2000-03-08  Akim Demaille  <akim@epita.fr>
+
+       * acgeneral.m4 (_AC_INIT_PARSE_ARGS): Fix copy n' paste typos in
+       `--with-*', `--without-*' and `*' decoding.
+       Reported by Raja R Harinath.
+       Fixes autoconf/119.
+
 2000-03-08  Akim Demaille  <akim@epita.fr>
 
        Don't dump AC_ARG_PROGRAM help messages if not used.
diff --git a/THANKS b/THANKS
index 9ce7503c01b957a9a7b9f20840e30fa66b9fd0d8..0d01f735e74587fbc4384f29aae47dbc097ed4f2 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -85,6 +85,7 @@ Paul Gampe            paulg@apnic.net
 Pavel Roskin           pavel_roskin@geocities.com
 Philipp Thomas         kthomas@gwdg.de
 Rainer Orth            ro@TechFak.Uni-Bielefeld.DE
+Raja R Harinath                harinath@cs.umn.edu
 Ralf S. Engelschall    rse@engelschall.com
 Richard Stallman       rms@gnu.org
 Robert S. Maier                rsm@math.arizona.edu
index 1993085e8aa92a5c52006ec9f18545335fc5faf8..bd52bef9e7723f9fdcc851b5b78f8b48f5ba3768 100644 (file)
@@ -883,7 +883,7 @@ do
   -with-* | --with-*)
     ac_package=`echo "$ac_option"|sed -e 's/-*with-//' -e 's/=.*//'`
     # Reject names that are not valid shell variable names.
-    if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
+    if echo "$ac_package" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
       ]AC_MSG_ERROR(invalid package: $ac_package)[
     fi
     ac_package=`echo $ac_package| sed 's/-/_/g'`
@@ -896,7 +896,7 @@ do
   -without-* | --without-*)
     ac_package=`echo "$ac_option"|sed -e 's/-*without-//'`
     # Reject names that are not valid shell variable names.
-    if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
+    if echo "$ac_package" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
       ]AC_MSG_ERROR(invalid package: $ac_package)[
     fi
     ac_package=`echo $ac_package| sed 's/-/_/g'`
@@ -935,7 +935,7 @@ Try `configure --help' for more information.])[
     export $ac_envvar ;;
 
   *)
-    if echo "$ac_feature" | grep '[^-a-zA-Z0-9.]' >/dev/null 2>&1; then
+    if echo "$ac_option" | grep '[^-a-zA-Z0-9.]' >/dev/null 2>&1; then
       ]AC_MSG_WARN(invalid host type: $ac_option)[
     fi
     if test "x$nonopt" != xNONE; then
index 1993085e8aa92a5c52006ec9f18545335fc5faf8..bd52bef9e7723f9fdcc851b5b78f8b48f5ba3768 100644 (file)
@@ -883,7 +883,7 @@ do
   -with-* | --with-*)
     ac_package=`echo "$ac_option"|sed -e 's/-*with-//' -e 's/=.*//'`
     # Reject names that are not valid shell variable names.
-    if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
+    if echo "$ac_package" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
       ]AC_MSG_ERROR(invalid package: $ac_package)[
     fi
     ac_package=`echo $ac_package| sed 's/-/_/g'`
@@ -896,7 +896,7 @@ do
   -without-* | --without-*)
     ac_package=`echo "$ac_option"|sed -e 's/-*without-//'`
     # Reject names that are not valid shell variable names.
-    if echo "$ac_feature" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
+    if echo "$ac_package" | grep '[^-a-zA-Z0-9_]' >/dev/null 2>&1; then
       ]AC_MSG_ERROR(invalid package: $ac_package)[
     fi
     ac_package=`echo $ac_package| sed 's/-/_/g'`
@@ -935,7 +935,7 @@ Try `configure --help' for more information.])[
     export $ac_envvar ;;
 
   *)
-    if echo "$ac_feature" | grep '[^-a-zA-Z0-9.]' >/dev/null 2>&1; then
+    if echo "$ac_option" | grep '[^-a-zA-Z0-9.]' >/dev/null 2>&1; then
       ]AC_MSG_WARN(invalid host type: $ac_option)[
     fi
     if test "x$nonopt" != xNONE; then