autoconf-commit
[Top][All Lists]
Advanced

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

[SCM] GNU Autoconf source repository branch, master, updated. v2.63-249-


From: Eric Blake
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.63-249-gb7b3a00
Date: Mon, 29 Dec 2008 13:53:07 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=b7b3a0029cd34fc620fbbe3eaff200439c5d2bbc

The branch, master has been updated
       via  b7b3a0029cd34fc620fbbe3eaff200439c5d2bbc (commit)
      from  5f85192b8081c9f6f4d6912785dad9b6a78c9f8d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b7b3a0029cd34fc620fbbe3eaff200439c5d2bbc
Author: William Pursell <address@hidden>
Date:   Sun Dec 28 11:03:15 2008 +0000

    Use AS_CASE in documented example.
    
    * doc/autoconf.texi (Using the System Type): Use AS_CASE in
    example instead of raw case.
    
    Signed-off-by: William Pursell <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |    6 ++++++
 doc/autoconf.texi |   10 +++++-----
 2 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 099c19e..f60e99a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-12-28  William Pursell  <address@hidden>  (tiny change)
+
+       Use AS_CASE in documented example.
+       * doc/autoconf.texi (Using the System Type): Use AS_CASE in
+       example instead of raw case.
+
 2008-12-23  Eric Blake  <address@hidden>
 
        Make m4_dumpdef more useful with M4 1.6.
diff --git a/doc/autoconf.texi b/doc/autoconf.texi
index 2d8d3c7..d619578 100644
--- a/doc/autoconf.texi
+++ b/doc/autoconf.texi
@@ -18948,11 +18948,11 @@ following would be used in a makefile to add the 
object to a
 program or library.
 
 @example
-case $host in
-  alpha*-*-*) CYCLE_OBJ=rpcc.o ;;
-  i?86-*-*)   CYCLE_OBJ=rdtsc.o ;;
-  *)          CYCLE_OBJ= ;;
-esac
+AS_CASE([$host],
+  [alpha*-*-*], [CYCLE_OBJ=rpcc.o],
+  [i?86-*-*],   [CYCLE_OBJ=rdtsc.o],
+  [CYCLE_OBJ=""]
+)
 AC_SUBST([CYCLE_OBJ])
 @end example
 


hooks/post-receive
--
GNU Autoconf source repository




reply via email to

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