An example from the AC_HELP_STRING doc was missing a parenthesis.
Regards,
Morten Eriksen
Index: autoconf.texi
===================================================================
RCS file: /cvs/autoconf/doc/autoconf.texi,v
retrieving revision 1.247
diff -u -r1.247 autoconf.texi
--- autoconf.texi 2000/03/20 10:10:06 1.247
+++ autoconf.texi 2000/04/02 17:54:59
@@ -5559,7 +5559,7 @@
@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