autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Autoconf 2.52 documentation nit with (exit 1); exit


From: Paul Eggert
Subject: Autoconf 2.52 documentation nit with (exit 1); exit
Date: Wed, 18 Jul 2001 09:49:48 -0700 (PDT)

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  <address@hidden>

        * 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]