Here's one little nit in the documentation that I noticed just after
2.52 was released. (Can I claim the honor of sending the first bug
report and fix? :-)
2001-07-18 Paul Eggert <[EMAIL PROTECTED]>
* doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
example, rather than (exit 1); exit (which isn't portable).
===================================================================
RCS file: doc/autoconf.texi,v
retrieving revision 2.52
retrieving revision 2.52.0.1
diff -pu -r2.52 -r2.52.0.1
--- doc/autoconf.texi 2001/07/17 16:34:55 2.52
+++ doc/autoconf.texi 2001/07/18 16:45:15 2.52.0.1
@@ -5900,8 +5900,8 @@ AC_CACHE_SAVE
@group
# Might abort...
-AM_PATH_GTK(1.0.2,, (exit 1); exit)
-AM_PATH_GTKMM(0.9.5,, (exit 1); exit)
+AM_PATH_GTK(1.0.2,, [AC_MSG_ERROR([GTK not in path])])
+AM_PATH_GTKMM(0.9.5,, [AC_MSG_ERROR([GTK not in path])])
@end group
@r{ @dots{} AC_OUTPUT, etc. @dots{}}
@end example