Fix typo.

This commit is contained in:
Akim Demaille 2000-04-03 11:19:22 +00:00
parent dad0204a71
commit 8f0e1b3401
2 changed files with 2 additions and 1 deletions

1
THANKS
View File

@ -80,6 +80,7 @@ Michael Schoene mrs@mlc.de
Mike Hopkirk hops@sco.com
Mike Stump mrs@wrs.com
Miles Bader miles@gnu.ai.mit.edu
Morten Eriksen mortene@sim.no
Nicolas Joly njoly@pasteur.fr
Noah Elliott elliott@hera.llnl.gov
Noah Friedman friedman@gnu.ai.mit.edu

View File

@ -5559,7 +5559,7 @@ Options}). The following example will make this clearer.
@example
AC_DEFUN(TEST_MACRO,
[AC_ARG_WITH(foo,
AC_HELP_STRING([--with-foo], [use foo (default is NO)],
AC_HELP_STRING([--with-foo], [use foo (default is NO)]),
ac_cv_use_foo=$withval, ac_cv_use_foo=no),
AC_CACHE_CHECK(whether to use foo, ac_cv_use_foo, ac_cv_use_foo=no)])
@end example