]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
(Pretty Help Strings): Fix typo
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 23 Nov 2004 09:01:01 +0000 (09:01 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 23 Nov 2004 09:01:01 +0000 (09:01 +0000)
in my editing of the previous patch.

doc/autoconf.texi

index 6aeee509305477972ae70fb1b42810b65793129f..ea7e9f432e0954cd3dc33f62dabdb6ddf228b65d 100644 (file)
@@ -13077,7 +13077,10 @@ AC_DEFUN([MY_ARG_WITH],
   [AC_ARG_WITH([$1],
      [AS_HELP_STRING([--with-$1], [use $1 (default is $2)])],
      [ac_cv_use_$1=$withval],
-     [ac_cv_use_$1=no])])
+     [ac_cv_use_$1=no])
+   AC_CACHE_CHECK([whether to use $1],
+     [ac_cv_use_$1],
+     [ac_cv_use_$1=$2])])
 @end example
 @end defmac